Skip to content

Commit dff6539

Browse files
vjdhamaclaude
andcommitted
feat: upgrade Terraform core version requirement to 1.13.0
- Update required_version from >= 1.8.4 to >= 1.13.0 across all modules - Update workflow terraform_version from 1.8.4 to 1.13.1 - Apply to main module, submodules, and examples consistently - Gains 6+ months of performance improvements and new features - Maintains backward compatibility for existing configurations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d2c88e1 commit dff6539

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/terraform-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Terraform
1616
uses: hashicorp/setup-terraform@v3
1717
with:
18-
terraform_version: "1.8.4"
18+
terraform_version: "1.13.1"
1919

2020
- name: Initialize Terraform
2121
id: init

examples/complete/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
terraform {
2-
required_version = ">= 1.8.4"
2+
required_version = ">= 1.13.0"
33
}

examples/minimal/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
terraform {
2-
required_version = ">= 1.8.4"
2+
required_version = ">= 1.13.0"
33
}

modules/route-53-record/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 1.8.4"
2+
required_version = ">= 1.13.0"
33

44
required_providers {
55
aws = {

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 1.8.4"
2+
required_version = ">= 1.13.0"
33

44
required_providers {
55
aws = {

0 commit comments

Comments
 (0)