update dev&compute

This commit is contained in:
Come THURET 2024-12-04 17:14:08 +01:00
parent 41da5c5607
commit 07fccbcd19
4 changed files with 47 additions and 4 deletions

View File

@ -21,7 +21,15 @@ module "network"{
frontend_cidr = var.frontend_cidr
backend_cidr = var.backend_cidr
database_cidr = var.database_cidr
ssh_source_ranges = var.ssh_source_ranges
ssh_source_ranges = var.ssh_source_ranges
}
module "computes"{
source = "../../modules/compute"
tp07-frontend = var.tp07-frontend
tp07-backend = var.tp07-backend
tp07-database = var.tp07-database
zone = var.zone
instance_type = var.instance_type
}

View File

@ -38,4 +38,34 @@ variable "ssh_source_ranges"{
description = "source range ssh"
type = string
default = "0.0.0.0/0"
}
variable "tp07-frontend"{
description = "sous réseau frontend"
type = string
default = "tp07-frontend"
}
variable "tp07-backend"{
description = "sous réseau backend"
type = string
default = "tp07-backend"
}
variable "tp07-database"{
description = "sous réseau database"
type = string
default = "tp07-database"
}
variable "zone"{
description = "region du projet"
type = string
default = "europe-west4-b"
}
variable "instance_type"{
description = "type d'instance"
type = string
default = "e2-small"
}

View File

@ -1,6 +1,6 @@
resource "google_compute_instance" "tp07-frontend" {
name = "tp07-frontend"
machine_type = "e2-small"
machine_type = var.instance_type
zone = var.region
boot_disk {

View File

@ -13,7 +13,12 @@ variable "tp07-database"{
type = string
}
variable "region"{
variable "zone"{
description = "region du projet"
type = string
}
variable "instance_type"{
description = "type d'instance"
type = string
}