Skip to content

Commit 8f43866

Browse files
chore: upgrade AWS provider to >= 5.80.0 and Terraform to >= 1.10.0 (#36)
* ⬆️ upgrade: update AWS provider to >= 5.80.0 and Terraform to >= 1.10.0 * 🔧 fix: add provider: none to tf-checks workflow * fix: correct required_version to >= 1.10.0 --------- Co-authored-by: Anmol Nagpal <anmolnagpal@users.noreply.github.com>
1 parent 2a9b0a5 commit 8f43866

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tf-checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ jobs:
99
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
1010
with:
1111
working_directory: './examples/'
12+
provider: none

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Terraform version
22
terraform {
3-
required_version = ">= 1.5.0"
3+
required_version = ">= 1.10.0"
44

55
required_providers {
66
aws = {
77
source = "hashicorp/aws"
8-
version = ">= 5.9.0"
8+
version = ">= 5.80.0"
99
}
1010
}
1111
}

0 commit comments

Comments
 (0)