13 lines
188 B
Terraform
13 lines
188 B
Terraform
|
variable "instance_type" {
|
||
|
description = "type d'instance"
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "zone" {
|
||
|
description = "zone"
|
||
|
type = string
|
||
|
default = "europe-west4-a"
|
||
|
}
|
||
|
|
||
|
|