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

31 lines
524 B
Terraform
Raw Normal View History

2022-03-20 16:30:59 +00:00
# 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
}