Skip to content

Commit 07f181b

Browse files
fix(deps): Update cft/developer-tools Docker tag to v1.21 (#203)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andrew Peabody <[email protected]>
1 parent dbcf93a commit 07f181b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Make will use bash instead of sh
1919
SHELL := /usr/bin/env bash
2020

21-
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.14
21+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.21
2222
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ tags:
4141
- 'integration'
4242
substitutions:
4343
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
44-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.14'
44+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.21'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ tags:
2121
- 'lint'
2222
substitutions:
2323
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
24-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.14'
24+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.21'

modules/cluster/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616

1717

1818
output "ca_cert_pem" {
19-
value = tls_self_signed_cert.root.*.cert_pem
19+
value = tls_self_signed_cert.root[*].cert_pem
2020
sensitive = true
2121

2222
description = "CA certificate used to verify Vault TLS client connections."
2323

2424
}
2525

2626
output "ca_key_pem" {
27-
value = tls_private_key.root.*.private_key_pem
27+
value = tls_private_key.root[*].private_key_pem
2828
sensitive = true
2929

3030
description = "Private key for the CA."

network.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ resource "google_compute_router_nat" "vault-nat" {
6969
region = var.region
7070

7171
nat_ip_allocate_option = "MANUAL_ONLY"
72-
nat_ips = google_compute_address.vault-nat.*.self_link
72+
nat_ips = google_compute_address.vault-nat[*].self_link
7373

7474
source_subnetwork_ip_ranges_to_nat = "LIST_OF_SUBNETWORKS"
7575

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ output "vault_subnet" {
6868
}
6969

7070
output "vault_nat_ips" {
71-
value = google_compute_address.vault-nat.*.address
71+
value = google_compute_address.vault-nat[*].address
7272
description = "The NAT-ips that the vault nodes will use to communicate with external services."
7373
}

0 commit comments

Comments
 (0)