virtualisation/modules/compute/variables.tf

13 lines
188 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
default = "europe-west4-a"
}