Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit cfb6da2

Browse files
shashidhar087npalm
authored andcommitted
feat: Support AWS 4.x Terraform provider (#1739)
BREAKING CHANGE: The module is upgraded to AWS Terraform provider 4.x
1 parent b733248 commit cfb6da2

File tree

22 files changed

+317
-292
lines changed

22 files changed

+317
-292
lines changed

Diff for: .github/workflows/terraform.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Verify module
1616
strategy:
1717
matrix:
18-
terraform: [1.1.3, 'latest']
18+
terraform: [1.1.3, "latest"]
1919
runs-on: ubuntu-latest
2020
container:
2121
image: hashicorp/terraform:${{ matrix.terraform }}
@@ -44,8 +44,9 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
terraform: [1.0.11, 1.1.3, 'latest']
48-
example: ["default", "ubuntu", "prebuilt", "arm64", "ephemeral", "windows"]
47+
terraform: [1.0.11, 1.1.3, "latest"]
48+
example:
49+
["default", "ubuntu", "prebuilt", "arm64", "ephemeral", "windows"]
4950
defaults:
5051
run:
5152
working-directory: examples/${{ matrix.example }}

Diff for: examples/arm64/.terraform.lock.hcl

+43-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: examples/arm64/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = ">= 3.27"
5+
version = "~> 4.0"
66
}
77
local = {
88
source = "hashicorp/local"

Diff for: examples/default/.terraform.lock.hcl

+43-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: examples/default/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = ">= 3.71"
5+
version = "~> 4.0"
66
}
77
local = {
88
source = "hashicorp/local"

Diff for: examples/ephemeral/.terraform.lock.hcl

+43-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: examples/ephemeral/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = ">= 3.71"
5+
version = "~> 4.0"
66
}
77
local = {
88
source = "hashicorp/local"

0 commit comments

Comments
 (0)