-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinput.tf
More file actions
78 lines (63 loc) · 1.04 KB
/
input.tf
File metadata and controls
78 lines (63 loc) · 1.04 KB
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
variable "firewall_ids" {
type = list(string)
default = []
}
variable "hostname" {
type = string
}
# Whether to install Puppet Agent or not.
variable "install_puppet_agent" {
type = bool
default = true
}
variable "puppet_environment" {
type = string
default = ""
}
variable "puppet_version" {
type = number
default = 7
}
variable "puppetmaster_ip" {
type = string
default = ""
}
variable "ssh_keys" {
type = list
}
variable "floating_ip" {
type = string
default = "false"
}
# The public hostname of the server. Added to Route 53 if not set to "false"
variable "public_hostname" {
type = string
default = "false"
}
variable "route53_zone_id" {
type = string
default = "false"
}
variable "backups" {
type = string
default = "true"
}
variable "deployment" {
type = string
default = "production"
}
variable "image" {
type = string
}
variable "server_type" {
type = string
default = "cx11"
}
variable "location" {
type = string
default = "hel1"
}
variable "labels" {
type = map
default = {}
}