forked from pierront/but3-iac
30 lines
494 B
HCL
30 lines
494 B
HCL
output "internal_ips" {
|
|
value = module.compute.ip_interne
|
|
}
|
|
|
|
output "frontend_public_ip" {
|
|
value = module.compute.ip_public_frontend
|
|
}
|
|
|
|
output "instance_names" {
|
|
value = module.compute.nom_instance
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
output "subnets_ids" {
|
|
value = module.network.subnets
|
|
}
|
|
|