DEV5.6_TP07/terraform/modules/compute/variables.tf
2024-12-04 17:14:08 +01:00

24 lines
421 B
HCL

variable "tp07-frontend"{
description = "sous réseau frontend"
type = string
}
variable "tp07-backend"{
description = "sous réseau backend"
type = string
}
variable "tp07-database"{
description = "sous réseau database"
type = string
}
variable "zone"{
description = "region du projet"
type = string
}
variable "instance_type"{
description = "type d'instance"
type = string
}