Skip to content

Commit

Permalink
Upgrading to AWS provider 3.x (#69)
Browse files Browse the repository at this point in the history
* Upgrading to AWS provider 3.x

* Updated README.md

* Update versions.tf

Co-authored-by: Andriy Knysh <aknysh@users.noreply.github.com>

* Updated README.md

* fmt and readme update

* Updated README.md

* Update versions.tf

Co-authored-by: Nuru <Nuru@users.noreply.github.com>

* Upgrading to support aws 3.1 provider

* Updated README.md

* Updated README.md

Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com>
Co-authored-by: Andriy Knysh <aknysh@users.noreply.github.com>
Co-authored-by: Nuru <Nuru@users.noreply.github.com>
  • Loading branch information
4 people authored Oct 30, 2020
1 parent e46880e commit 8cc13ee
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,16 @@ Available targets:

| Name | Version |
|------|---------|
| terraform | >= 0.12.0 |
| aws | >= 2.34 |
| terraform | >= 0.12 |
| aws | >= 3.1 |
| local | >= 1.2 |
| template | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | >= 2.34 |
| aws | >= 3.1 |

## Inputs

Expand Down
6 changes: 3 additions & 3 deletions docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@

| Name | Version |
|------|---------|
| terraform | >= 0.12.0 |
| aws | >= 2.34 |
| terraform | >= 0.12 |
| aws | >= 3.1 |
| local | >= 1.2 |
| template | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | >= 2.34 |
| aws | >= 3.1 |

## Inputs

Expand Down
18 changes: 13 additions & 5 deletions examples/complete/versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
terraform {
required_version = ">= 0.12.0"

required_version = ">= 0.12"
required_providers {
aws = ">= 2.34"
template = ">= 2.0"
local = ">= 1.2"
aws = {
source = "hashicorp/aws"
version = ">= 3.1"
}
template = {
source = "hashicorp/template"
version = ">= 2.0"
}
local = {
source = "hashicorp/local"
version = ">= 1.2"
}
}
}
18 changes: 13 additions & 5 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
terraform {
required_version = ">= 0.12.0"

required_version = ">= 0.12"
required_providers {
aws = ">= 2.34"
template = ">= 2.0"
local = ">= 1.2"
aws = {
source = "hashicorp/aws"
version = ">= 3.1"
}
template = {
source = "hashicorp/template"
version = ">= 2.0"
}
local = {
source = "hashicorp/local"
version = ">= 1.2"
}
}
}

0 comments on commit 8cc13ee

Please sign in to comment.