This repository has been archived on 2022-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
mmp-osp1/terraform/google/vars.tf

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
}