forked from pierront/but3-iac
30 lines
504 B
HCL
30 lines
504 B
HCL
output "internal_ips" {
|
|
value = module.compute.internal_ips
|
|
}
|
|
|
|
output "frontend_public_ip" {
|
|
value = module.compute.frontend_public_ip
|
|
}
|
|
|
|
output "instance_names" {
|
|
value = module.compute.instance_names
|
|
}
|
|
|
|
output "service_account_email" {
|
|
value = module.iam.service_account_email
|
|
}
|
|
|
|
output "service_account_key" {
|
|
sensitive = true
|
|
value = module.iam.service_account_key
|
|
}
|
|
|
|
output "vpc_id" {
|
|
value = module.network.vpc_id
|
|
}
|
|
|
|
output "subnets_ids" {
|
|
value = module.network.subnets_ids
|
|
}
|
|
|