From f9148593b1013451d5cc0dd9e49a9a358d6e741c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 17:13:29 +0000 Subject: [PATCH 1/5] chore(deps): Update cft/developer-tools Docker tag to v1.21 --- Makefile | 2 +- build/int.cloudbuild.yaml | 2 +- build/lint.cloudbuild.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8451147..269206f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ # Make will use bash instead of sh SHELL := /usr/bin/env bash -DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.14 +DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.21 DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools REGISTRY_URL := gcr.io/cloud-foundation-cicd diff --git a/build/int.cloudbuild.yaml b/build/int.cloudbuild.yaml index a804452..870dfb8 100644 --- a/build/int.cloudbuild.yaml +++ b/build/int.cloudbuild.yaml @@ -41,4 +41,4 @@ tags: - 'integration' substitutions: _DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools' - _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.14' + _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.21' diff --git a/build/lint.cloudbuild.yaml b/build/lint.cloudbuild.yaml index 902fcde..7d7d8d0 100644 --- a/build/lint.cloudbuild.yaml +++ b/build/lint.cloudbuild.yaml @@ -21,4 +21,4 @@ tags: - 'lint' substitutions: _DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools' - _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.14' + _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.21' From a985827759ffb732ccbf6751269874e220a52965 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Thu, 13 Jun 2024 08:38:09 -0700 Subject: [PATCH 2/5] Update network.tf --- network.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network.tf b/network.tf index 69d6b77..aad9152 100644 --- a/network.tf +++ b/network.tf @@ -69,7 +69,7 @@ resource "google_compute_router_nat" "vault-nat" { region = var.region nat_ip_allocate_option = "MANUAL_ONLY" - nat_ips = google_compute_address.vault-nat.*.self_link + nat_ips = google_compute_address.vault-nat[*].self_link source_subnetwork_ip_ranges_to_nat = "LIST_OF_SUBNETWORKS" From e41ebb1dc87ec659f505bb205023b436bde077cf Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Thu, 13 Jun 2024 08:38:24 -0700 Subject: [PATCH 3/5] Update outputs.tf --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 85a6874..51be8bd 100644 --- a/outputs.tf +++ b/outputs.tf @@ -68,6 +68,6 @@ output "vault_subnet" { } output "vault_nat_ips" { - value = google_compute_address.vault-nat.*.address + value = google_compute_address.vault-nat[*].address description = "The NAT-ips that the vault nodes will use to communicate with external services." } From ddc89ea7078ea1c9dabfc82e053f518fab3e36bd Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Thu, 13 Jun 2024 08:38:44 -0700 Subject: [PATCH 4/5] Update outputs.tf --- modules/cluster/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cluster/outputs.tf b/modules/cluster/outputs.tf index b26e601..3d76962 100644 --- a/modules/cluster/outputs.tf +++ b/modules/cluster/outputs.tf @@ -24,7 +24,7 @@ output "ca_cert_pem" { } output "ca_key_pem" { - value = tls_private_key.root.*.private_key_pem + value = tls_private_key.root[*].private_key_pem sensitive = true description = "Private key for the CA." From 6392a703d7189e3b2b1ea24ba305bb74b672f6d6 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Thu, 13 Jun 2024 08:39:14 -0700 Subject: [PATCH 5/5] Update outputs.tf --- modules/cluster/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cluster/outputs.tf b/modules/cluster/outputs.tf index 3d76962..b980bcc 100644 --- a/modules/cluster/outputs.tf +++ b/modules/cluster/outputs.tf @@ -16,7 +16,7 @@ output "ca_cert_pem" { - value = tls_self_signed_cert.root.*.cert_pem + value = tls_self_signed_cert.root[*].cert_pem sensitive = true description = "CA certificate used to verify Vault TLS client connections."