-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
73 lines (60 loc) · 1.4 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
variable "ssh_user" {
description = "Remote host"
type = string
sensitive = true
}
variable "ssh_port" {
description = "Remote host"
type = string
sensitive = true
}
variable "remote_host" {
description = "Remote host"
type = string
sensitive = true
}
variable "db_name" {
description = "Name of the database"
type = string
default = "ejbca"
}
variable "db_password" {
description = "Password of the database"
type = string
sensitive = true
}
variable "image_name" {
description = "Name of the ejbca image"
type = string
default = "keyfactor/ejbca-ce"
}
variable "mariadb_image" {
description = "Name of the mariadb image"
type = string
default = "mariadb"
}
variable "container_name" {
description = "Name of the container"
type = string
default = "ejbca"
}
variable "db_container_name" {
description = "Name of the database container"
type = string
default = "ejbca_db"
}
variable "network_subnet" {
description = "CIDR format of the network subnet"
type = string
default = "172.3.0.0/16"
}
variable "container_ip" {
description = "Local IP address of the container"
type = string
default = "172.3.0.5"
}
variable "db_host" {
description = "Local IP address of the MariaDB container"
type = string
default = "172.3.0.6"
}