forked from pierront/but3-iac
27 lines
469 B
HCL
27 lines
469 B
HCL
output "ip_internes" {
|
|
value = module.compute.ip_internes
|
|
}
|
|
|
|
output "ip_public_frontend" {
|
|
value = module.compute.ip_public_frontend
|
|
}
|
|
|
|
output "nom_instances" {
|
|
value = module.compute.nom_instances
|
|
}
|
|
|
|
output "service_account_email" {
|
|
value = module.iam.service_account_email
|
|
}
|
|
|
|
output "service_account_key" {
|
|
value = module.iam.service_account_key
|
|
}
|
|
|
|
output "vpc" {
|
|
value = module.network.vpc
|
|
}
|
|
|
|
output "subnets" {
|
|
value = module.network.subnets
|
|
} |