Files
Ryan Boehning f7ef3d241a Initial commit
2020-04-19 03:40:44 -07:00

17 lines
440 B
HCL

// vpc module
output "link" {
description = "A link to the VPC resource, useful for creating resources inside the VPC"
value = google_compute_network.vpc.self_link
}
output "name" {
description = "The name of the VPC"
value = google_compute_network.vpc.name
}
output "private_vpc_connection" {
description = "The private VPC connection"
value = google_service_networking_connection.private_vpc_connection
}