forked from pierront/but3-iac
20 lines
295 B
Terraform
20 lines
295 B
Terraform
|
|
variable "project" {
|
||
|
|
type = string
|
||
|
|
default = "projet-hugo-478713"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "region" {
|
||
|
|
type = string
|
||
|
|
default = "europe-west9"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "zone" {
|
||
|
|
type = string
|
||
|
|
default = "europe-west9-b"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "ssh_source_ranges" {
|
||
|
|
type = list(string)
|
||
|
|
default = ["0.0.0.0/0"]
|
||
|
|
}
|