forked from pierront/but3-iac
16 lines
273 B
HCL
16 lines
273 B
HCL
output "frontend_public_ip" {
|
|
value = module.compute.frontend_public_ip
|
|
}
|
|
|
|
output "internal_ips" {
|
|
value = module.compute.internal_ips
|
|
}
|
|
|
|
output "vpc_id" {
|
|
value = module.network.vpc_id
|
|
}
|
|
|
|
output "service_account_email" {
|
|
value = module.iam.service_account_email
|
|
}
|