forked from pierront/but3-iac
33 lines
546 B
HCL
33 lines
546 B
HCL
output "frontend_ip" {
|
|
value = module.compute.frontend_ip
|
|
}
|
|
|
|
output "backend_ip" {
|
|
value = module.compute.backend_ip
|
|
}
|
|
|
|
output "database_ip" {
|
|
value = module.compute.database_ip
|
|
}
|
|
|
|
output "instance_names" {
|
|
value = module.compute.instance_names
|
|
}
|
|
|
|
output "vpc_id" {
|
|
value = module.network.vpc_id
|
|
}
|
|
|
|
output "subnet_ids" {
|
|
value = module.network.subnet_ids
|
|
}
|
|
|
|
output "service_account_email" {
|
|
value = module.iam.service_account_email
|
|
}
|
|
|
|
output "service_account_key" {
|
|
value = module.iam.service_account_key
|
|
sensitive = true
|
|
}
|