-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
79 lines (64 loc) · 1.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
variable "aiven_api_token" {
description = "Aiven API token"
type = string
}
variable "aiven_project_name" {
description = "Project Name"
type = string
}
variable "cloud_name" {
description = "Cloud Provider"
type = string
}
variable "plan" {
description = "Aiven Plan"
type = string
}
variable "kafka_stage_name" {
description = "Kafka Environment"
type = string
}
variable "kafka_version" {
description = "Kafka Version"
type = string
}
variable "kafka_connect" {
description = "Kafka Connect"
type = bool
}
variable "kafka_rest" {
description = "Kafka REST"
type = bool
}
variable "kafka_schema_registry" {
description = "Kafka Schema Registry"
type = bool
}
variable "log_retention_bytes" {
description = "Kafka Log Retention in Bytes"
type = number
}
variable "log_retention_hours" {
description = "Kafka Log Retention in Hours"
type = number
}
variable "prometheus_endpoint_user" {
description = "Prometheus Endpoint Username"
type = string
}
variable "prometheus_endpoint_name" {
description = "Prometheus Endpoint Name"
type = string
}
variable "grafana_stage_name" {
description = "Grafana Environment"
type = string
}
variable "influx_stage_name" {
description = "Influx Environment"
type = string
}
variable "pg_stage_name" {
description = "Postgres Environment"
type = string
}