Skip to content

Commit 97dfa22

Browse files
jochenehretjpalermo
authored andcommitted
Disable ephemeral_external_ip for GCP cloud config
* since v9.0.11 bbl deploys a cloud NAT gateway on GCP for outgoing traffic
1 parent 5e2727c commit 97dfa22

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cloudconfig/gcp/fixtures/gcp-ops.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@
553553
static:
554554
- ((subnetwork_static_ips))
555555
cloud_properties:
556-
ephemeral_external_ip: true
556+
ephemeral_external_ip: false
557557
network_name: ((network))
558558
subnetwork_name: ((subnetwork))
559559
tags:
@@ -573,7 +573,7 @@
573573
static:
574574
- ((subnetwork_static_ips))
575575
cloud_properties:
576-
ephemeral_external_ip: true
576+
ephemeral_external_ip: false
577577
network_name: ((network))
578578
subnetwork_name: ((subnetwork))
579579
tags:

cloudconfig/gcp/ops_generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func (o *OpsGenerator) generateGCPOps(state storage.State) ([]op, error) {
168168
"((subnetwork_static_ips))",
169169
},
170170
CloudProperties: subnetCloudProperties{
171-
EphemeralExternalIP: true,
171+
EphemeralExternalIP: false,
172172
NetworkName: "((network))",
173173
SubnetworkName: "((subnetwork))",
174174
Tags: []string{"((internal_tag_name))"},

0 commit comments

Comments
 (0)