forked from terraform-google-modules/terraform-google-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
185 lines (158 loc) · 5.13 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/**
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
variable "project_id" {
type = string
description = "The GCP project ID"
default = null
}
variable "name_prefix" {
description = "Name prefix for the instance template"
default = "default-instance-template"
}
variable "machine_type" {
description = "Machine type to create, e.g. n1-standard-1"
default = "n1-standard-1"
}
variable "can_ip_forward" {
description = "Enable IP forwarding, for NAT instances for example"
default = "false"
}
variable "tags" {
type = list(string)
description = "Network tags, provided as a list"
default = []
}
variable "labels" {
type = map(string)
description = "Labels, provided as a map"
default = {}
}
variable "preemptible" {
type = bool
description = "Allow the instance to be preempted"
default = false
}
variable "region" {
type = string
description = "Region where the instance template should be created."
default = null
}
#######
# disk
#######
variable "source_image" {
description = "Source disk image. If neither source_image nor source_image_family is specified, defaults to the latest public CentOS image."
default = ""
}
variable "source_image_family" {
description = "Source image family. If neither source_image nor source_image_family is specified, defaults to the latest public CentOS image."
default = "centos-7"
}
variable "source_image_project" {
description = "Project where the source image comes from. The default project contains images that support Shielded VMs if desired"
default = "gce-uefi-images"
}
variable "disk_size_gb" {
description = "Boot disk size in GB"
default = "100"
}
variable "disk_type" {
description = "Boot disk type, can be either pd-ssd, local-ssd, or pd-standard"
default = "pd-standard"
}
variable "auto_delete" {
description = "Whether or not the boot disk should be auto-deleted"
default = "true"
}
variable "additional_disks" {
description = "List of maps of additional disks. See https://www.terraform.io/docs/providers/google/r/compute_instance_template.html#disk_name"
type = list(object({
auto_delete = bool
boot = bool
device_name = string
disk_size_gb = number
disk_type = string
}))
default = []
}
####################
# network_interface
####################
variable "network" {
description = "The name or self_link of the network to attach this interface to. Use network attribute for Legacy or Auto subnetted networks and subnetwork for custom subnetted networks."
default = ""
}
variable "subnetwork" {
description = "The name of the subnetwork to attach this interface to. The subnetwork must exist in the same region this instance will be created in. Either network or subnetwork must be provided."
default = ""
}
variable "subnetwork_project" {
description = "The ID of the project in which the subnetwork belongs. If it is not provided, the provider project is used."
default = ""
}
###########
# metadata
###########
variable "startup_script" {
description = "User startup script to run when instances spin up"
default = ""
}
variable "metadata" {
type = map(string)
description = "Metadata, provided as a map"
default = {}
}
##################
# service_account
##################
variable "service_account" {
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."
}
###########################
# Shielded VMs
###########################
variable "enable_shielded_vm" {
default = false
description = "Whether to enable the Shielded VM configuration on the instance. Note that the instance image must support Shielded VMs. See https://cloud.google.com/compute/docs/images"
}
variable "shielded_instance_config" {
description = "Not used unless enable_shielded_vm is true. Shielded VM configuration for the instance."
type = object({
enable_secure_boot = bool
enable_vtpm = bool
enable_integrity_monitoring = bool
})
default = {
enable_secure_boot = true
enable_vtpm = true
enable_integrity_monitoring = true
}
}
###########################
# Public IP
###########################
variable "access_config" {
description = "Access configurations, i.e. IPs via which the VM instance can be accessed via the Internet."
type = list(object({
nat_ip = string
network_tier = string
}))
default = []
}