-
-
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.
* 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
1 parent
e46880e
commit 8cc13ee
Showing
4 changed files
with
32 additions
and
16 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,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" | ||
} | ||
} | ||
} |
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,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" | ||
} | ||
} | ||
} |