From 2fd18ad1ff5dbf33542d45d0924909b8cfb33678 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 05:41:54 +0000 Subject: [PATCH] chore(deps): update terraform cloudposse/stack-config/yaml to v1.8.0 --- src/provider-auth0-client.tf | 2 +- src/remote-state.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/provider-auth0-client.tf b/src/provider-auth0-client.tf index f7fb49f..6c1149a 100644 --- a/src/provider-auth0-client.tf +++ b/src/provider-auth0-client.tf @@ -33,7 +33,7 @@ locals { module "auth0_tenant" { source = "cloudposse/stack-config/yaml//modules/remote-state" - version = "1.5.0" + version = "1.8.0" count = local.enabled ? 1 : 0 diff --git a/src/remote-state.tf b/src/remote-state.tf index 068ecc6..0631f19 100644 --- a/src/remote-state.tf +++ b/src/remote-state.tf @@ -1,6 +1,6 @@ module "auth0_apps" { source = "cloudposse/stack-config/yaml//modules/remote-state" - version = "1.5.0" + version = "1.8.0" for_each = local.enabled ? { for app in var.auth0_app_connections : "${app.tenant}-${app.environment}-${app.stage}-${app.component}" => app } : {}