Skip to content

Commit e488c94

Browse files
committed
Relax TF provider version requirements
Stricter version requirements on providers cause more headacke than needed. Users often sit on various major versions of providers and forcing them to upgrade is often unnecessary. Relaxing the version requirements wildcards. We can reevaluate this if this causes any problems in the future
1 parent b4c64d7 commit e488c94

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

asset-account/terraform/stack-set/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = "~> 5.0"
7+
version = ">= 5.0"
88
}
99
}
1010
}

connector/terraform/modules/account/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = "~> 5.0"
7+
version = ">= 5.0"
88
}
99
http = {
1010
source = "hashicorp/http"
11-
version = "~> 3.0"
11+
version = ">= 3.0"
1212
}
1313
}
1414
}

connector/terraform/modules/nat-provision/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = "~> 5.0"
7+
version = ">= 5.0"
88
}
99
}
1010
}

connector/terraform/modules/region/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = "~> 5.0"
7+
version = ">= 5.0"
88
}
99
}
1010
}

iam-policies/terraform/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = "~> 5.0"
7+
version = ">= 5.0"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)