Skip to content

Commit b6bfb7b

Browse files
committed
fix: bump stack-config/yaml remote-state from 1.8.0 to 2.0.0
CI Lint was failing with conflicting constraints on cloudposse/utils: no available releases match the given constraints >= 1.7.1, >= 2.0.0, < 2.0.0, < 3.0.0 src/remote-state.tf (4 call sites) pinned stack-config/yaml v1.8.0, which requires utils >= 1.7.1, < 2.0.0. CI clones aws-account-map sibling component for ../account-map/modules/iam-roles, and iam_roles.account_map there now uses stack-config/yaml v2.0.0, which requires utils >= 2.0.0, < 3.0.0. The two ranges are incompatible. Bumping all four refs to v2.0.0 aligns with the sibling component and resolves the provider constraint. No breaking API changes between 1.8.0 and 2.0.0 in the remote-state submodule — only the utils version pin widens.
1 parent db6023d commit b6bfb7b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/remote-state.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "vpc" {
22
source = "cloudposse/stack-config/yaml//modules/remote-state"
3-
version = "1.8.0"
3+
version = "2.0.0"
44

55
component = var.vpc_component_name
66

@@ -9,7 +9,7 @@ module "vpc" {
99

1010
module "vpc_ingress" {
1111
source = "cloudposse/stack-config/yaml//modules/remote-state"
12-
version = "1.8.0"
12+
version = "2.0.0"
1313

1414
for_each = {
1515
for i, account in var.allow_ingress_from_vpc_accounts :
@@ -27,7 +27,7 @@ module "vpc_ingress" {
2727

2828
module "eks" {
2929
source = "cloudposse/stack-config/yaml//modules/remote-state"
30-
version = "1.8.0"
30+
version = "2.0.0"
3131

3232
for_each = local.eks_security_group_enabled ? var.eks_component_names : toset([])
3333
component = each.value
@@ -38,7 +38,7 @@ module "eks" {
3838

3939
module "dns_gbl_delegated" {
4040
source = "cloudposse/stack-config/yaml//modules/remote-state"
41-
version = "1.8.0"
41+
version = "2.0.0"
4242

4343
component = "dns-delegated"
4444
environment = var.dns_gbl_delegated_environment_name

0 commit comments

Comments
 (0)