Skip to content

Commit

Permalink
Upgrading to support aws 3.1 provider (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamengual authored Oct 30, 2020
1 parent d031973 commit fd7c1a1
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 24 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,22 @@ For a complete usage example, see [terraform-aws-ecs-web-app module](https://git



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

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

## Providers

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

## Inputs

Expand Down Expand Up @@ -142,6 +143,7 @@ For a complete usage example, see [terraform-aws-ecs-web-app module](https://git
| scale\_down\_policy\_arn | ARN of the scale down policy |
| scale\_up\_policy\_arn | ARN of the scale up policy |

<!-- markdownlint-restore -->



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

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

## Providers

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

## Inputs

Expand Down Expand Up @@ -41,3 +42,4 @@
| scale\_down\_policy\_arn | ARN of the scale down policy |
| scale\_up\_policy\_arn | ARN of the scale up policy |

<!-- markdownlint-restore -->
23 changes: 17 additions & 6 deletions examples/complete/versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
terraform {
required_version = "~> 0.12.0"

required_version = ">= 0.12"
required_providers {
aws = "~> 2.0"
template = "~> 2.0"
local = "~> 1.2"
null = "~> 2.0"
aws = {
source = "hashicorp/aws"
version = ">= 2.0"
}
template = {
source = "hashicorp/template"
version = ">= 2.0"
}
local = {
source = "hashicorp/local"
version = ">= 1.2"
}
null = {
source = "hashicorp/null"
version = ">= 2.0"
}
}
}
23 changes: 17 additions & 6 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"

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

0 comments on commit fd7c1a1

Please sign in to comment.