-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
60 lines (51 loc) · 1.22 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
variable "project" {
type = string
description = "Name of the GCP project to use"
default = "default-project"
sensitive = true
}
variable "username" {
type = string
description = "Google account user name"
default = "root"
sensitive = true
}
variable "vm_name" {
type = string
description = "VM Name to use"
default = "hollow-knight-server"
sensitive = true
}
variable "machine_type" {
type = string
description = "Machine type to use for VM"
default = "e2-micro"
sensitive = true
}
variable "region" {
type = string
description = "Compute region"
default = "us-central1"
sensitive = true
}
variable "zone" {
type = string
description = "Compute zone"
default = "c"
sensitive = true
}
variable "hkmp_port" {
type = number
description = "Hollow-knight multi-player port"
default = 2222
}
variable "hkmw_port" {
type = number
description = "Hollow-knight multi-world port"
default = 3333
}
variable "credential_file" {
type = string
description = "GCP account credential file obtained using `gcloud auth application-default login`"
default = "credentials.json"
}