-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
63 lines (49 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
61
62
63
variable "project_name" {
description = "Project name, used for namespacing things"
}
variable "instance_type" {
default = "t2.micro"
}
variable "ami" {
description = "Custom AMI, if empty will use latest Ubuntu"
default = ""
}
variable "volume_size" {
description = "Volume size"
default = 8
}
variable "ssh_private_key" {
description = "Used to connect to the instance once created"
}
variable "ssh_key_name" {
description = "Name of the key-pair on EC2 (aws-ireland, buildo-aws, ...)"
}
variable "zone_id" {
description = "Route53 Zone ID"
}
variable "host_name" {
description = "DNS host name"
}
variable "quay_password" {
description = "Quay password"
}
variable "init_script" {
description = "bash code executed before `crane lift` is called, example: `\"$${file(\\\"init.sh\\\")}\"`"
default = ""
}
variable "in_open_ports" {
default = []
}
variable "in_cidr_blocks" {
default = ["0.0.0.0/0"]
}
variable "disk_utilization_alarm_threshold" {
description = "disk occupation alarm threshold (% of disk utilization)"
default = "80"
}
variable "bellosguardo_target" {
description = "Possible values are 'buildo', 'omnilab'"
}
variable "iam_instance_profile" {
default = ""
}