-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
43 lines (37 loc) · 995 Bytes
/
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
42
43
variable "project" {
description = "Specify the GCP project."
type = string
}
variable "credentials_file" {
description = "Specify the GCP credentials .json file."
type = string
}
variable "region" {
description = "Specify the GCP region."
type = string
default = "europe-west6"
}
variable "zone" {
description = "Specify the GCP zone."
type = string
default = "europe-west6-b"
}
variable "service_list" {
description = "Specify APIs required by the project."
type = list(string)
default = [
"iam.googleapis.com",
"cloudresourcemanager.googleapis.com",
"compute.googleapis.com"
]
}
variable "wghub_instance_image_project" {
description = "Specify the boot image project name."
type = string
default = "ubuntu-os-pro-cloud"
}
variable "wghub_instance_image_family" {
description = "Specify the boot image family name."
type = string
default = "ubuntu-pro-2404-lts-amd64"
}