Skip to content

Commit

Permalink
Merge pull request #64 from env0/chore-release-stuff
Browse files Browse the repository at this point in the history
Chore: Add Release Drafter and Update Documenation
  • Loading branch information
avnerenv0 committed May 31, 2021
2 parents 2575fc8 + 270f982 commit baf7f27
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name-template: 'v$NEXT_PATCH_VERSION 🌈'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## Changes
$CHANGES
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 baf7f27

Please sign in to comment.