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