30 lines
524 B
HCL
30 lines
524 B
HCL
# Name variable definition
|
|
variable "name" {
|
|
default = "ml"
|
|
}
|
|
|
|
# Definition of an instance type variable depending on the choice of tariff
|
|
variable "machine_type" {
|
|
default = "custom-8-30720"
|
|
}
|
|
|
|
variable "project" {
|
|
default = "project"
|
|
}
|
|
|
|
# Definition of the region in which the instance will be created
|
|
variable "region" {
|
|
default = "europe-west4"
|
|
}
|
|
|
|
variable "zone" {
|
|
default = "europe-west4-a"
|
|
}
|
|
|
|
variable "guest_accelerator" {
|
|
default = "nvidia-tesla-v100"
|
|
}
|
|
|
|
variable "startup_script_vars" {
|
|
type = map
|
|
}
|