-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
40 lines (34 loc) · 937 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 "cf_space_id" {
description = "Cloudfoundry space id to provision resources in"
type = string
}
variable "name_postfix" {
type = string
description = "The postfix string to append to the space, hostname, etc. Prevents namespace clashes"
default = ""
}
variable "exporter_image" {
description = "Image to use for RabbitMQ exporter"
default = "kbudde/rabbitmq-exporter:main"
type = string
}
variable "plan" {
description = "Plan to use"
type = string
default = "rabbitmq-dev-standalone"
}
variable "exporter_memory" {
type = number
description = "Exporter memory settings"
default = 128
}
variable "exporter_disk_quota" {
type = number
description = "Exporter disk quota"
default = 1024
}
variable "exporter_environment" {
type = map(any)
description = "Additional onfiguration for the exporter"
default = {}
}