diff --git a/docs/data-sources/aws_credentials.md b/docs/data-sources/aws_credentials.md new file mode 100644 index 00000000..50fa1ba2 --- /dev/null +++ b/docs/data-sources/aws_credentials.md @@ -0,0 +1,23 @@ +--- +# generated by https://github.com/hashicorp/terraform-plugin-docs +page_title: "env0_aws_credentials Data Source - terraform-provider-env0" +subcategory: "" +description: |- + +--- + +# env0_aws_credentials (Data Source) + + + + + + +## Schema + +### Optional + +- **id** (String) the id of the credential +- **name** (String) the name of the credential + + diff --git a/docs/resources/aws_credentials.md b/docs/resources/aws_credentials.md new file mode 100644 index 00000000..87e9032a --- /dev/null +++ b/docs/resources/aws_credentials.md @@ -0,0 +1,36 @@ +--- +# generated by https://github.com/hashicorp/terraform-plugin-docs +page_title: "env0_aws_credentials Resource - terraform-provider-env0" +subcategory: "" +description: |- + +--- + +# env0_aws_credentials (Resource) + + + +## Example Usage + +```terraform +resource "env0_aws_credentials" "example" { + name = "example" + arn = "Example role ARN" + external_id = "Example external id" +} +``` + + +## Schema + +### Required + +- **arn** (String) the aws role arn +- **external_id** (String, Sensitive) the aws role external id +- **name** (String) name for the credentials + +### Optional + +- **id** (String) The ID of this resource. + +