forked from pierront/but3-iac
17 lines
274 B
Terraform
17 lines
274 B
Terraform
|
|
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
|
||
|
|
}
|
||
|
|
|