virtualisation/modules/compute/variables.tf

26 lines
387 B
Terraform
Raw Normal View History

2024-12-04 17:02:32 +01:00
variable "instance_type" {
description = "type d'instance"
type = string
}
variable "zone" {
description = "zone"
type = string
}
2024-12-06 15:40:52 +01:00
variable "sub1"{
description = "subnet1 frontend"
type = string
}
variable "sub2"{
description = "subnet2 backend"
type = string
}
variable "sub3"{
description = "subnet3 database"
type = string
}
2024-12-04 17:02:32 +01:00