-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
60 lines (49 loc) · 1.29 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Variables
variable "gcp_cred_file" {
description = "Name of GCP cred file"
default = null
}
variable "gcp_project" {
description = "Name of GCP project"
default = null
}
variable "gcp_region" {
description = "Specify a GCP region"
default = null
}
variable "gcp_subnetwork" {
description = "Specify OS Image Family"
default = "default"
}
variable "gcp_instance_template_prefix" {
description = "Prefix for GCP Instance Template"
default = null
}
variable "gcp_instance_template_machine_type" {
description = "Specify GCP Instance Machine Type"
default = "f1-micro"
}
variable "gcp_instance_template_image_project" {
description = "Specify OS Image Project"
default = "debian-cloud"
}
variable "gcp_instance_template_image_family" {
description = "Specify OS Image Family"
default = "debian-10"
}
variable "nat_ip" {
description = "Public ip address"
default = null
}
variable "network_tier" {
description = "Network network_tier"
default = "PREMIUM"
}
variable "service_account" {
default = null
type = object({
email = string,
scopes = set(string)
})
description = "Service account to attach to the instance. See https://www.terraform.io/docs/providers/google/r/compute_instance_template.html#service_account."
}