Skip to content

Commit

Permalink
fix: update aws provider version (#24)
Browse files Browse the repository at this point in the history
* fix: update aws provider version

* update versions.tf

* Updated README.md

Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com>
  • Loading branch information
tirumerla and actions-bot authored Oct 31, 2020
1 parent de0faf1 commit c66c8ff
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,21 @@ Available targets:
```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| local | ~> 1.2 |
| null | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| local | >= 1.2 |
| null | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down Expand Up @@ -141,6 +142,7 @@ Available targets:
| bucket\_id | S3 bucket ID |
| bucket\_prefix | S3 bucket prefix |

<!-- markdownlint-restore -->



Expand Down
12 changes: 7 additions & 5 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 |
| local | ~> 1.2 |
| null | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| local | >= 1.2 |
| null | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down Expand Up @@ -46,3 +47,4 @@
| bucket\_id | S3 bucket ID |
| bucket\_prefix | S3 bucket prefix |

<!-- markdownlint-restore -->
8 changes: 4 additions & 4 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"
required_version = ">= 0.12.0"

required_providers {
aws = "~> 2.0"
local = "~> 1.2"
null = "~> 2.0"
aws = ">= 2.0"
local = ">= 1.2"
null = ">= 2.0"
}
}

0 comments on commit c66c8ff

Please sign in to comment.