From 1e756f84e86505977bf4debdeb8d49ab3d290162 Mon Sep 17 00:00:00 2001 From: gregory hendrickson Date: Wed, 15 Mar 2023 16:40:11 -0700 Subject: [PATCH] access_confg --- modules/instances/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/instances/main.tf b/modules/instances/main.tf index 437a8eb..353b423 100644 --- a/modules/instances/main.tf +++ b/modules/instances/main.tf @@ -19,7 +19,7 @@ resource "google_compute_instance" "backend" { network = "default" access_config { // Assign a public (external) IP address to the instance - nat_ip = "ephemeral" + } } } @@ -44,7 +44,7 @@ resource "google_compute_instance" "frontend" { network = "default" access_config { // Assign a public (external) IP address to the instance - nat_ip = "ephemeral" + } } }