forked from pierront/but3-iac
29 lines
485 B
HCL
29 lines
485 B
HCL
output "ip_interne" {
|
|
value = module.compute.ip_interne
|
|
}
|
|
|
|
output "ip_public_frontend" {
|
|
value = module.compute.ip_public_frontend
|
|
}
|
|
|
|
output "nom_instance" {
|
|
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" {
|
|
value = module.network.vpc
|
|
}
|
|
|
|
output "subnets" {
|
|
value = module.network.subnets
|
|
}
|