2024-12-04 17:26:53 +01:00
|
|
|
output "vpc_id" {
|
2024-12-06 16:54:49 +01:00
|
|
|
value = google_compute_network.my_new_vpc.id
|
2024-12-04 17:26:53 +01:00
|
|
|
description = "VPC ID"
|
|
|
|
}
|
|
|
|
|
|
|
|
output "subnet_ids" {
|
|
|
|
value = {
|
|
|
|
frontend = google_compute_subnetwork.frontend.id
|
|
|
|
backend = google_compute_subnetwork.backend.id
|
|
|
|
database = google_compute_subnetwork.database.id
|
|
|
|
}
|
|
|
|
description = "subnetworks ids"
|
|
|
|
}
|