-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathvariables.tf
More file actions
73 lines (63 loc) · 1.61 KB
/
variables.tf
File metadata and controls
73 lines (63 loc) · 1.61 KB
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
variable "postgres_image" {
description = "Which postgres docker image to use"
default = "postgres:17"
type = string
sensitive = false
}
variable "docker_host" {
description = "Socket path to docker host to use for testing"
default = "unix:///var/run/docker.sock"
type = string
sensitive = false
}
variable "table_count" {
description = "Number of mock tables to create"
default = 300
type = number
sensitive = false
}
variable "user_ro_count" {
description = "Number of mock RO users to create"
default = 30
type = number
sensitive = false
}
variable "user_rw_count" {
description = "Number of mock RW users to create"
default = 30
type = number
sensitive = false
}
variable "POSTGRES_DBNAME" {
default = "postgres"
type = string
sensitive = false
}
variable "POSTGRES_USER" {
default = "postgres"
type = string
sensitive = false
}
variable "POSTGRES_PASSWORD" {
description = "Password for docker POSTGRES_USER"
default = "postgres"
type = string
sensitive = false
}
variable "POSTGRES_HOST" {
default = "127.0.0.1"
type = string
sensitive = false
}
variable "POSTGRES_PORT" {
description = "Which port postgres should listen on."
default = 5432
type = number
sensitive = false
}
variable "keep_image" {
description = "If true, then the Docker image won't be deleted on destroy operation. If this is false, it will delete the image from the docker local storage on destroy operation."
default = true
type = bool
sensitive = false
}