-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
40 lines (33 loc) · 838 Bytes
/
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
variable "hostname_prometheus" {
description = "Hostname for Prometheus"
type = string
}
variable "hostname_alertmanager" {
description = "Hostname for Alertmanager"
type = string
}
variable "hostname_grafana" {
description = "Hostname for Grafana"
type = string
}
variable "instance_type" {
description = "Instance type for EC2 instance"
type = string
default = "t2.nano"
}
variable "config_bucket_name" {
description = "Name of S3 bucket that stores config files"
type = string
}
variable "password" {
description = "Password for web frontend"
type = string
}
variable "letsencrypt_email" {
description = "Email for Let's Encrypt"
type = string
}
variable "monitoring_keys" {
description = "Key name for EC2 instances"
type = string
}