This commit is contained in:
aissi
2025-12-04 11:47:35 +01:00
parent e4c5e6b05e
commit deb90640a0
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
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" {
sensitive = true
value = module.iam.service_account_key
}
output "vpc" {
value = module.network.vpc
}
output "subnets" {
value = module.network.subnets
}

View File

@@ -8,3 +8,9 @@ output "service_account_key" {
sensitive = true
value = google_service_account_key.mykey.private_key
}
module "iam" {
source = "../../modules/iam"
project_id = var.project_id
}