Formatting
This commit is contained in:
parent
bce7e3f29c
commit
c96f6e5bd7
2 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
variable "enabled" {
|
variable "enabled" {
|
||||||
type = bool
|
type = bool
|
||||||
description = "Whether to enable the service or merely provision it."
|
description = "Whether to enable the service or merely provision it."
|
||||||
default = true
|
default = true
|
||||||
}
|
}
|
||||||
variable "placement_constraints" {
|
variable "placement_constraints" {
|
||||||
default = []
|
default = []
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ variable "servers" {
|
||||||
}
|
}
|
||||||
module "pgadmin" {
|
module "pgadmin" {
|
||||||
source = "../../docker/service"
|
source = "../../docker/service"
|
||||||
enable = var.enabled
|
enable = var.enabled
|
||||||
image = "dpage/pgadmin4:8"
|
image = "dpage/pgadmin4:8"
|
||||||
service_name = "pgadmin"
|
service_name = "pgadmin"
|
||||||
stack_name = "pgadmin"
|
stack_name = "pgadmin"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue