correction

This commit is contained in:
2025-12-04 11:09:04 +01:00
parent 2d7cf13680
commit 70f134a13a

View File

@@ -1,13 +1,13 @@
output "internal_ips" { output "internal_ips" {
value = module.compute.ip_interne value = module.compute.internal_ips
} }
output "frontend_public_ip" { output "frontend_public_ip" {
value = module.compute.ip_public_frontend value = module.compute.frontend_public_ip
} }
output "instance_names" { output "instance_names" {
value = module.compute.nom_instance value = module.compute.instance_names
} }
output "service_account_email" { output "service_account_email" {
@@ -20,10 +20,10 @@ output "service_account_key" {
} }
output "vpc_id" { output "vpc_id" {
value = module.network.vpc value = module.network.vpc_id
} }
output "subnets_ids" { output "subnets_ids" {
value = module.network.subnets value = module.network.subnets_ids
} }