forked from pierront/but3-iac
33 lines
529 B
HCL
33 lines
529 B
HCL
# À vous de définir les variables pour :
|
|
# - instance_type
|
|
# - zone
|
|
# - frontend_subnet_id
|
|
# - backend_subnet_id
|
|
# - database_subnet_id
|
|
|
|
|
|
variable "instance_type" {
|
|
description = "type de l'instance"
|
|
type = string
|
|
}
|
|
|
|
variable "zone" {
|
|
description = "région"
|
|
type = string
|
|
}
|
|
|
|
variable "frontend_subnet_id" {
|
|
description = "front-end id"
|
|
type = string
|
|
}
|
|
|
|
variable "backend_subnet_id" {
|
|
description = "back-end id"
|
|
type = string
|
|
}
|
|
|
|
variable "database_subnet_id" {
|
|
description = "database id"
|
|
type = string
|
|
}
|