forked from cloudposse/terraform-aws-ecs-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loosen the AWS provider requirement (cloudposse#77)
* Update versions.tf * Allow Terraform 0.14 * Use gte for all providers Co-authored-by: Andriy Knysh <[email protected]> * Modify example versions * Updated README.md Co-authored-by: Andriy Knysh <[email protected]> Co-authored-by: actions-bot <[email protected]>
- Loading branch information
1 parent
21cf369
commit 5e4ab35
Showing
7 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
terraform { | ||
required_version = ">= 0.12.0, < 0.14.0" | ||
required_version = ">= 0.12.0" | ||
|
||
required_providers { | ||
aws = "~> 2.0" | ||
template = "~> 2.0" | ||
null = "~> 2.0" | ||
local = "~> 1.3" | ||
aws = ">= 2.0" | ||
template = ">= 2.0" | ||
null = ">= 2.0" | ||
local = ">= 1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
terraform { | ||
required_version = ">= 0.12.0, < 0.14.0" | ||
required_version = ">= 0.12.0" | ||
|
||
required_providers { | ||
aws = "~> 2.0" | ||
template = "~> 2.0" | ||
null = "~> 2.0" | ||
local = "~> 1.3" | ||
aws = ">= 2.0" | ||
template = ">= 2.0" | ||
null = ">= 2.0" | ||
local = ">= 1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
terraform { | ||
required_version = ">= 0.12.0, < 0.14.0" | ||
required_version = ">= 0.12.0" | ||
|
||
required_providers { | ||
aws = "~> 2.0" | ||
template = "~> 2.0" | ||
null = "~> 2.0" | ||
local = "~> 1.3" | ||
aws = ">= 2.0" | ||
template = ">= 2.0" | ||
null = ">= 2.0" | ||
local = ">= 1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
terraform { | ||
required_version = ">= 0.12.0, < 0.14.0" | ||
required_version = ">= 0.12.0" | ||
|
||
required_providers { | ||
aws = "~> 2.0" | ||
template = "~> 2.0" | ||
null = "~> 2.0" | ||
local = "~> 1.3" | ||
aws = ">= 2.0" | ||
template = ">= 2.0" | ||
null = ">= 2.0" | ||
local = ">= 1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
terraform { | ||
required_version = ">= 0.12.0, < 0.14.0" | ||
required_version = ">= 0.12.0" | ||
|
||
required_providers { | ||
aws = "~> 2.0" | ||
template = "~> 2.0" | ||
null = "~> 2.0" | ||
local = "~> 1.3" | ||
aws = ">= 2.0" | ||
template = ">= 2.0" | ||
null = ">= 2.0" | ||
local = ">= 1.3" | ||
} | ||
} |