Skip to content

Commit ce22c1c

Browse files
aknyshclaude
andauthored
Update cloudposse/utils provider to v2.0.0 (#110)
* Update cloudposse/utils provider constraint to >= 2.0.0 Update all modules and examples to require utils provider v2.0.0+. The v2 release fixes a critical plugin crash ("Plugin did not respond") caused by the embedded Atmos version not understanding newer atmos.yaml features (stores, hooks, templates.settings.gomplate). Notable: removes the `< 2.0.0` upper bound from modules/remote-state that was explicitly blocking v2. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Add < 3.0.0 upper bound to utils provider constraint Pin to >= 2.0.0, < 3.0.0 consistently across all modules and examples to guard against future breaking changes in the provider. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9193eb7 commit ce22c1c

13 files changed

Lines changed: 14 additions & 17 deletions

File tree

examples/backend/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.8.0"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

examples/complete/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.8.0"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

examples/remote-state/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.8.0"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

examples/spacelift/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.8.0"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

examples/stack/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.8.0"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

examples/stacks/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.8.0"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

modules/backend/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.7.1"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

modules/env/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.7.1"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

modules/remote-state/versions.tf

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ terraform {
1111
version = ">= 2.0"
1212
}
1313
utils = {
14-
source = "cloudposse/utils"
15-
# We were previously pinning this to <=1.8.0, but changing this each time we had a new version was a pain. As
16-
# a compromise, we'll pin to a minimum version, but allow any patch version below 2.0.0 and we will make sure
17-
# that if we make any major/breaking changes in cloudposse/utils, we'll increment to 2.0.0.
18-
version = ">= 1.7.1, < 2.0.0"
14+
source = "cloudposse/utils"
15+
version = ">= 2.0.0, < 3.0.0"
1916
}
2017
}
2118
}

modules/settings/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 1.7.1"
15+
version = ">= 2.0.0, < 3.0.0"
1616
}
1717
}
1818
}

0 commit comments

Comments
 (0)