From 270f982c010bb146931dbef9a3d411ea3e9cbe0d Mon Sep 17 00:00:00 2001 From: "avner.sorek" Date: Mon, 31 May 2021 15:35:53 +0300 Subject: [PATCH] updating docs --- docs/data-sources/aws_credentials.md | 23 ++++++++++++++++++ docs/resources/aws_credentials.md | 36 ++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 docs/data-sources/aws_credentials.md create mode 100644 docs/resources/aws_credentials.md 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. + +