-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (43 loc) · 1018 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
41
42
43
44
45
46
47
48
49
50
51
52
variable "remote_host" {
description = "Remote host"
type = string
sensitive = true
}
variable "db_host" {
description = "Host of the database"
type = string
}
variable "db_name" {
description = "Name of the database"
type = string
default = "signserver"
}
variable "db_user" {
description = "User of the database"
type = string
}
variable "db_password" {
description = "Password of the database"
type = string
sensitive = true
}
variable "image_name" {
description = "Name of the image"
type = string
default = "keyfactor/signserver-ce"
}
variable "container_name" {
description = "Name of the container"
type = string
default = "signserver"
}
variable "network_subnet" {
description = "CIDR format of the network subnet"
type = string
default = "172.9.0.0/16"
}
variable "container_ip" {
description = "IP address of the container"
type = string
default = "172.9.0.5"
}