This commit is contained in:
dubreuil
2025-12-04 11:08:11 +00:00
parent e67b5bf03c
commit 2a74663e38
26 changed files with 3305 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
output "internal_ips" {
value = module.compute.internal_ips
}
output "frontend_public_ip" {
value = module.compute.frontend_public_ip
}
output "instance_names" {
value = module.compute.instance_names
}
output "service_account_email" {
description = "Email du compte de service Terraform."
value = module.iam.email
}
output "service_account_key" {
description = "Clé privée du compte de service Terraform (sensitive)."
value = module.iam.key
sensitive = true
}
output "vpc" {
value = module.network.vpc_id
}
output "subnets" {
value = module.network.subnet_ids
}