-
Notifications
You must be signed in to change notification settings - Fork 4
/
vars.tf
52 lines (41 loc) · 1.02 KB
/
vars.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
variable token {
description = "Steam Token. See README.md"
}
variable region {
description = "AWS Region"
}
variable security_group_name {
description = "AWS Security Group name"
}
variable ebs_disk_size {
description = "Disk size of server holding disk"
}
variable instance_type {
description = "AWS Instance Type"
}
variable password {
description = "CSGO Server Password (RCON and Private)"
}
variable tags {
description = "Custom tags to add to the server as a string separated by comma. E.G.: myserver, csgo"
}
variable logging {
description = "Enabled logging to the file, console, and udp <on | off>"
}
variable game_type {
description = "Game Type. Default Competitive. See README.md"
default = 0
}
variable game_mode {
description = "Game Mode. Default Competitive. See README.md"
default = 1
}
variable map_group {
description = "Map Group to use.. See README.md"
}
variable default_map {
description = "Default Initial Map"
}
variable max_players {
description = "Max Allowed Players"
}