-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01dbdf5
commit dc1c4ae
Showing
14 changed files
with
150 additions
and
452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "toluna_environment_config Data Source - terraform-provider-toluna-v2" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# toluna_environment_config (Data Source) | ||
|
||
|
||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `address` (String) | ||
- `path` (String) | ||
- `scheme` (String) | ||
- `validation_rules` (String) | ||
|
||
### Read-Only | ||
|
||
- `configuration` (String) | ||
- `id` (Number) The ID of this resource. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,20 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "toluna Provider" | ||
page_title: "toluna-v2 Provider" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# toluna Provider | ||
The Toluna provider provides resources to allow custom action on terraform resources | ||
# toluna-v2 Provider | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
|
||
terraform { | ||
required_providers { | ||
toluna = { | ||
source = "toluna-terraform/toluna" | ||
version = ">=0.0.9" | ||
} | ||
} | ||
} | ||
|
||
provider "aws" { | ||
region = "us-east-1" | ||
profile = "my-profile" | ||
} | ||
|
||
provider "toluna" { | ||
} | ||
resource "toluna_invoke_lambda" "example" { | ||
region = "us-east-1" | ||
aws_profile = "my-profile" | ||
function_name = "my_lambda" | ||
payload = jsonencode({"name": "example pay load"}) | ||
} | ||
resource "toluna_start_codebuild" "example" { | ||
region = "us-east-1" | ||
aws_profile = "my-profile" | ||
project_name = "my_project" | ||
environment_variables { | ||
name = "my-variable" | ||
value = "FOO" | ||
type = "PLAINTEXT" | ||
} | ||
environment_variables { | ||
name = "my-secret-variable" | ||
value = "BAR" | ||
type = "PARAMETER_STORE" | ||
} | ||
environment_variables { | ||
name = "my-other-secret-variable" | ||
value = "BAR" | ||
type = "SECRETS_MANAGER" | ||
} | ||
} | ||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
data "toluna_validate_configuration" "example" { | ||
rule_set { | ||
key_name = "key" | ||
rule ="unique" | ||
value = "nil" | ||
} | ||
rule_set { | ||
key_name = "$..env_index" | ||
rule ="odd" | ||
value = "nil" | ||
} | ||
rule_set { | ||
key_name = "$..env_index" | ||
rule =">" | ||
value = "6" | ||
} | ||
rule_set { | ||
key_name = "$..env_index" | ||
rule ="<" | ||
value = "21" | ||
} | ||
rule_set { | ||
key_name = "key" | ||
rule ="~=" | ||
value = "example" | ||
} | ||
json_config = data.consul_keys.appjson.var | ||
} | ||
``` | ||
### Optional | ||
|
||
- `strict_module_validation` (Boolean) Defaults to `false`. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "toluna_invoke_lambda Resource - terraform-provider-toluna-v2" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# toluna_invoke_lambda (Resource) | ||
|
||
|
||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `function_name` (String) | ||
- `payload` (String) | ||
- `region` (String) | ||
|
||
### Optional | ||
|
||
- `aws_profile` (String) | ||
- `id` (String) The ID of this resource. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "toluna_start_codebuild Resource - terraform-provider-toluna-v2" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# toluna_start_codebuild (Resource) | ||
|
||
|
||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `project_name` (String) | ||
- `region` (String) | ||
|
||
### Optional | ||
|
||
- `aws_profile` (String) | ||
- `environment_variables` (Block Set) (see [below for nested schema](#nestedblock--environment_variables)) | ||
- `id` (String) The ID of this resource. | ||
|
||
<a id="nestedblock--environment_variables"></a> | ||
### Nested Schema for `environment_variables` | ||
|
||
Required: | ||
|
||
- `name` (String) | ||
- `type` (String) | ||
- `value` (String) | ||
|
||
|
Oops, something went wrong.