-
Notifications
You must be signed in to change notification settings - Fork 1
/
compute-variables.tf
42 lines (35 loc) · 1003 Bytes
/
compute-variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
variable "compute_instance_size" {
type = string
default = "e2-standard-4"
description = "The compute server size/flavor."
}
variable "compute_disk_size_gb" {
type = string
default = "200"
description = "The size in Gigabytes for the root volume."
}
variable "compute_disk_type" {
type = string
default = "pd-ssd"
description = "The type/storage class of the root volume."
}
variable "compute_image_name" {
type = string
default = "ubuntu"
description = "The friendly name for the boot image."
}
variable "compute_image_family" {
type = string
default = "ubuntu-2204-lts"
description = "The search token for a bootable image."
}
variable "compute_image_project" {
type = string
default = "ubuntu-os-cloud"
description = "The project owning the compute image."
}
variable "compute_region" {
type = string
default = "us-west1"
description = "The deployment availability zone."
}