access_confg

This commit is contained in:
gregory hendrickson
2023-03-15 16:40:11 -07:00
parent c38153c178
commit 1e756f84e8

View File

@@ -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"
}
}
}