Skip to content

Commit

Permalink
updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
avnerenv0 committed May 31, 2021
1 parent b738a17 commit 270f982
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/data-sources/aws_credentials.md
Original file line number Diff line number Diff line change
@@ -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 generated by tfplugindocs -->
## Schema

### Optional

- **id** (String) the id of the credential
- **name** (String) the name of the credential


36 changes: 36 additions & 0 deletions docs/resources/aws_credentials.md
Original file line number Diff line number Diff line change
@@ -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 generated by tfplugindocs -->
## 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.


0 comments on commit 270f982

Please sign in to comment.