inshBouddah

This commit is contained in:
2024-12-06 14:42:39 +01:00
parent 0811717b23
commit 6ee0abf341
6 changed files with 126 additions and 4 deletions

View File

@@ -25,4 +25,14 @@ module "network" {
backend_cidr = var.backend_cidr
database_cidr = var.database_cidr
ssh_source_ranges = var.ssh_source_ranges
}
module "compute" {
source = "../../modules/compute"
instance_type = "e2-micro"
zone ="europe-west4"
frontend_subnet_id = module.network.id_subnetwork["frontend"]
backend_subnet_id = module.network.id_subnetwork["backend"]
database_subnet_id = module.network.id_subnetwork["database"]
}