Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Pouliot committed May 21, 2024
1 parent 39c8249 commit 5c3de15
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions examples/fedoracoreos/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ module "ampere-t2a" {
cloud_init_template_file = local.cloud_init_template_path
}

output "ampere_t2aa_private_ips" {
value = module.gcp-ampere-tau-t2a.ampere_taut2a_private_ips
output "ampere_t2a_private_ips" {
value = module.ampere-t2a.ampere_t2a_private_ips
}
output "ampere_t2aa_public_ips" {
value = module.gcp-ampere-tau-t2a.ampere_taut2a_public_ips
output "ampere_t2a_public_ips" {
value = module.ampere-t2a.ampere_t2a_public_ips
}
6 changes: 3 additions & 3 deletions output.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# NEED TO CHANGE TO PRIVATE IP - WIP

# Output GCE Ampere Instance Private IP(s)
output "ampere_taut2a_private_ips" {
output "ampere_t2a_private_ips" {
value = google_compute_instance.default.*.network_interface.0.network_ip
sensitive = false
}

# Output GCE Ampere Instance Public IP(s)
output "ampere_taut2a_public_ips" {
output "ampere_t2a_public_ips" {
value = google_compute_instance.default.*.network_interface.0.access_config.0.nat_ip
sensitive = false
}
Expand All @@ -18,7 +18,7 @@ output "my-email" {
}

# Output rendered instance Metadata
output "ampere_taut2a_metadata" {
output "ampere_t2a_metadata" {
value = google_compute_instance.default.*.metadata
sensitive = false
}

0 comments on commit 5c3de15

Please sign in to comment.