update dev

This commit is contained in:
Come THURET 2024-12-05 10:40:12 +01:00
parent 7711289a21
commit 6a77736278
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ module "network"{
ssh_source_ranges = var.ssh_source_ranges
}
module "computes"{
module "compute"{
source = "../../modules/compute"
tp07-frontend = var.tp07-frontend

View File

@ -4,9 +4,9 @@ output "vpc_id" {
output "subnets_ids" {
value = {
frontend = module.subnetwork.subnets_ids.frontend,
backend = module.subnetwork.subnets_ids.backend,
database = module.subnetwork.subnets_ids.database
frontend = module.network.subnets_ids.frontend,
backend = module.network.subnets_ids.backend,
database = module.network.subnets_ids.database
}
}