-
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make this module v14 compatible (#62)
* remove top end version constraints * go back to the cloudposse modules * no v * fix null label reference * use my one again * fix null label reference * fix null label reference * update for v14 compat * updates to pass all requirements for tf-14 support * move to tf registry * examples submodules upgrade to fully support TF 0.14 Co-authored-by: Maxim Mironenko <[email protected]>
- Loading branch information
1 parent
702e271
commit 816413f
Showing
7 changed files
with
40 additions
and
15 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
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,9 +1,18 @@ | ||
terraform { | ||
required_version = ">= 0.12.0" | ||
required_version = ">= 0.12.26" | ||
|
||
required_providers { | ||
aws = ">= 2.0" | ||
local = ">= 1.2" | ||
null = ">= 2.0" | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 2.0" | ||
} | ||
local = { | ||
source = "hashicorp/local" | ||
version = ">= 1.2" | ||
} | ||
null = { | ||
source = "hashicorp/null" | ||
version = ">= 2.0" | ||
} | ||
} | ||
} |
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,9 +1,18 @@ | ||
terraform { | ||
required_version = ">= 0.12.0" | ||
required_version = ">= 0.12.26" | ||
|
||
required_providers { | ||
aws = ">= 2.0" | ||
local = ">= 1.2" | ||
null = ">= 2.0" | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 2.0" | ||
} | ||
local = { | ||
source = "hashicorp/local" | ||
version = ">= 1.2" | ||
} | ||
null = { | ||
source = "hashicorp/null" | ||
version = ">= 2.0" | ||
} | ||
} | ||
} |