Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Commit

Permalink
aws provider v3.0 support (#21)
Browse files Browse the repository at this point in the history
* Update versions.tf

changed aws provider constraint to support v3.0

* Updated README.md

Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
savealive and actions-bot authored Sep 2, 2020
1 parent e7ce6c1 commit 6dad29b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,19 @@ The [`example`](./example) directory contains the example.



<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| aws | >= 2.23, < 4.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.23, < 4.0 |

## Inputs

Expand All @@ -150,6 +151,7 @@ The [`example`](./example) directory contains the example.
|------|-------------|
| result\_document | Aggregated IAM policy |

<!-- markdownlint-restore -->



Expand Down
6 changes: 4 additions & 2 deletions docs/terraform.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| aws | >= 2.23, < 4.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.23, < 4.0 |

## Inputs

Expand All @@ -23,3 +24,4 @@
|------|-------------|
| result\_document | Aggregated IAM policy |

<!-- markdownlint-restore -->
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ terraform {
required_version = ">= 0.12.0, < 0.14.0"

required_providers {
aws = "~> 2.0"
aws = ">= 2.23, < 4.0"
}
}

0 comments on commit 6dad29b

Please sign in to comment.