forked from pierront/but3-iac
38 lines
611 B
HCL
38 lines
611 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" {
|
|
description = "Email du compte de service Terraform."
|
|
value = module.iam.email
|
|
}
|
|
|
|
output "service_account_key" {
|
|
description = "Clé privée du compte de service Terraform (sensitive)."
|
|
value = module.iam.key
|
|
sensitive = true
|
|
}
|
|
|
|
|
|
output "vpc" {
|
|
value = module.network.vpc_id
|
|
}
|
|
|
|
output "subnets" {
|
|
value = module.network.subnet_ids
|
|
}
|
|
|
|
|
|
|