From e7a473407be3d499887df64acd51994590f2f9d6 Mon Sep 17 00:00:00 2001 From: Peter Pouliot Date: Tue, 21 May 2024 16:12:48 -0400 Subject: [PATCH] code cleanup --- examples/rockylinux9/main.tf | 4 ++-- network.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/rockylinux9/main.tf b/examples/rockylinux9/main.tf index e67a7c7..dc95d2a 100644 --- a/examples/rockylinux9/main.tf +++ b/examples/rockylinux9/main.tf @@ -16,8 +16,8 @@ module "gcp-ampere-tau-t2a" { region = "us-central1" zone = "us-central1-a" gcp_vm_count = 1 - gcp_os_image = "rockylinux9" - instance_prefix = "gcp-ampere-taut2a-rockylinux-9" + gcp_os_image = "rockylinux9" + instance_prefix = "ampere-t2a-rockylinux9" startup_script_template_file = null cloud_init_template_file = local.cloud_init_template_path } diff --git a/network.tf b/network.tf index 834e035..d5be67f 100644 --- a/network.tf +++ b/network.tf @@ -15,5 +15,5 @@ resource "google_compute_subnetwork" "vnet" { } resource "google_compute_address" "static_ip" { - name = "debian-vm" + name = "terraform-t2a-vm" }