Skip to content

Commit

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

* update versions for all plugins

* Updated README.md

Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com>
  • Loading branch information
tirumerla and actions-bot committed Oct 31, 2020
1 parent 89f93d6 commit 9868742
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -101,19 +101,19 @@ Available targets:

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

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| local | ~> 1.3 |
| tls | ~> 2.0 |
| aws | >= 2.0 |
| local | >= 1.3 |
| tls | >= 2.0 |

## Inputs

Expand Down
16 changes: 8 additions & 8 deletions docs/terraform.md
Expand Up @@ -3,19 +3,19 @@

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

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| local | ~> 1.3 |
| tls | ~> 2.0 |
| aws | >= 2.0 |
| local | >= 1.3 |
| tls | >= 2.0 |

## Inputs

Expand Down
10 changes: 5 additions & 5 deletions versions.tf
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"
required_version = ">= 0.12.0"

required_providers {
aws = "~> 2.0"
tls = "~> 2.0"
local = "~> 1.3"
null = "~> 2.1"
aws = ">= 2.0"
tls = ">= 2.0"
local = ">= 1.3"
null = ">= 2.1"
}
}

0 comments on commit 9868742

Please sign in to comment.