-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (35 loc) · 1.15 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
variable "env" {
description = "Environment tag (default 'dev')"
default = "dev"
}
variable "ecs_cluster" {
description = "Name of ECS cluster in which the service will be deployed"
}
variable "docker_image" {
description = "Docker image containing pganalyze collector (default is upstream stable)"
default = "quay.io/pganalyze/collector:stable"
}
variable "pga_api_key" {
description = "pganalyze API key associated with database (register the database in the pganalyze console to obtain this)"
}
variable "aws_instance_id" {
description = "some AWS instance id?"
}
variable "task_identifier" {
description = "Unique identifier for this pganalyze task (used in log prefix, service name etc.)"
}
variable "db_username" {
description = "Username of pganalyze monitoring role"
}
variable "db_password" {
description = "Password of pganalyze monitoring role"
}
variable "db_name" {
description = "Name of database to be monitored"
}
variable "rds_endpoint" {
description = "Endpoint of RDS instance to be monitored"
}
variable "log_group" {
description = "CloudWatch Log Group that will receive collector logs (must exist already)"
}