File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 18
18
# Make will use bash instead of sh
19
19
SHELL := /usr/bin/env bash
20
20
21
- DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.14
21
+ DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.21
22
22
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
23
23
REGISTRY_URL := gcr.io/cloud-foundation-cicd
24
24
Original file line number Diff line number Diff line change 41
41
- ' integration'
42
42
substitutions :
43
43
_DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
44
- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.14 '
44
+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.21 '
Original file line number Diff line number Diff line change 21
21
- ' lint'
22
22
substitutions :
23
23
_DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
24
- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.14 '
24
+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.21 '
Original file line number Diff line number Diff line change 16
16
17
17
18
18
output "ca_cert_pem" {
19
- value = tls_self_signed_cert. root . * . cert_pem
19
+ value = tls_self_signed_cert. root [ * ] . cert_pem
20
20
sensitive = true
21
21
22
22
description = " CA certificate used to verify Vault TLS client connections."
23
23
24
24
}
25
25
26
26
output "ca_key_pem" {
27
- value = tls_private_key. root . * . private_key_pem
27
+ value = tls_private_key. root [ * ] . private_key_pem
28
28
sensitive = true
29
29
30
30
description = " Private key for the CA."
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ resource "google_compute_router_nat" "vault-nat" {
69
69
region = var. region
70
70
71
71
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
73
73
74
74
source_subnetwork_ip_ranges_to_nat = " LIST_OF_SUBNETWORKS"
75
75
Original file line number Diff line number Diff line change @@ -68,6 +68,6 @@ output "vault_subnet" {
68
68
}
69
69
70
70
output "vault_nat_ips" {
71
- value = google_compute_address. vault-nat . * . address
71
+ value = google_compute_address. vault-nat [ * ] . address
72
72
description = " The NAT-ips that the vault nodes will use to communicate with external services."
73
73
}
You can’t perform that action at this time.
0 commit comments