Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Altonhe committed Jul 2, 2024
1 parent e7f4e8d commit 4d4db5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/gcp-gce/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ resource "google_compute_instance" "main" {
}

network_interface {
network = google_compute_network.main.id
subnetwork = google_compute_subnetwork.main.id
network = google_compute_network.main.id
subnetwork = google_compute_subnetwork.main.id
access_config {
nat_ip = google_compute_address.main.address
}
}

metadata_startup_script = "${data.template_file.main.rendered}"
metadata_startup_script = data.template_file.main.rendered

metadata = {
ssh-keys = "${var.admin_username}:${tls_private_key.ssh_key.public_key_openssh}"
Expand Down

0 comments on commit 4d4db5c

Please sign in to comment.