AutoGPT/rnd/infra/terraform/modules/networking/ouputs.tf

19 lines
528 B
HCL

output "network_name" {
description = "The name of the VPC network"
value = google_compute_network.vpc_network.name
}
output "network_self_link" {
description = "The self-link of the VPC network"
value = google_compute_network.vpc_network.self_link
}
output "subnet_name" {
description = "The name of the subnet"
value = google_compute_subnetwork.subnet.name
}
output "subnet_self_link" {
description = "The self-link of the subnet"
value = google_compute_subnetwork.subnet.self_link
}