forked from pierront/but3-iac
devs
This commit is contained in:
@@ -1,42 +1,28 @@
|
||||
output "ip_interne" {
|
||||
value = {
|
||||
frontend = module.compute.ip_interne.frontend
|
||||
backend = module.compute.ip_interne.backend
|
||||
database = module.compute.ip_interne.database
|
||||
}
|
||||
value = module.compute.ip_interne
|
||||
}
|
||||
|
||||
output "ip_public_frontend" {
|
||||
value = module.compute.ip_public_frontend.value
|
||||
value = module.compute.ip_public_frontend
|
||||
}
|
||||
|
||||
output "nom_instance" {
|
||||
value = {
|
||||
frontend = module.compute.nom_instance.frontend
|
||||
backend = module.compute.nom_instance.backend
|
||||
database = module.compute.nom_instance.database
|
||||
}
|
||||
value = module.compute.nom_instance
|
||||
}
|
||||
|
||||
output "service_account_email" {
|
||||
description = "Service account email."
|
||||
value = module.iam.service_account_email.value
|
||||
value = module.iam.service_account_email
|
||||
}
|
||||
|
||||
output "service_account_key" {
|
||||
description = "Service account key."
|
||||
sensitive = true
|
||||
value = module.iam.service_account_key.value
|
||||
value = module.iam.service_account_key
|
||||
}
|
||||
|
||||
output "vpc" {
|
||||
value = module.network.vpc.value
|
||||
value = module.network.vpc
|
||||
}
|
||||
|
||||
output "subnets" {
|
||||
value = {
|
||||
frontend = module.network.subnets.frontend
|
||||
backend = module.network.subnets.backend
|
||||
database = module.network.subnets.database
|
||||
}
|
||||
value = module.network.subnets
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user