Skip to content

Commit

Permalink
Support AWS provider 3.x.x (#23)
Browse files Browse the repository at this point in the history
## what
* Updates AWS provider pining to be inclusive of 3.x

## why
* Allow users to use AWS provider > 2.x

Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
mohsen0 and actions-bot committed Oct 13, 2020
1 parent 97e8ae9 commit c41bc13
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 @@ -124,20 +124,21 @@ Available targets:
```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| aws | >= 2.0, < 4.0.0 |
| local | ~> 1.3 |
| template | ~> 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0, < 4.0.0 |

## Inputs

Expand Down Expand Up @@ -168,6 +169,7 @@ Available targets:
| accept\_status | The status of the VPC peering connection request |
| connection\_id | VPC peering connection ID |

<!-- markdownlint-restore -->



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

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| aws | >= 2.0, < 4.0.0 |
| local | ~> 1.3 |
| template | ~> 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0, < 4.0.0 |

## Inputs

Expand Down Expand Up @@ -42,3 +43,4 @@
| accept\_status | The status of the VPC peering connection request |
| connection\_id | VPC peering connection ID |

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

required_providers {
aws = "~> 2.0"
aws = ">= 2.0, < 4.0.0"
template = "~> 2.0"
local = "~> 1.3"
}
Expand Down

0 comments on commit c41bc13

Please sign in to comment.