Whitespace
This commit is contained in:
parent
eeca39baa8
commit
93f0f03cd7
5 changed files with 0 additions and 7 deletions
products
|
@ -6,7 +6,6 @@ output "registry_user_login" {
|
|||
for user, pass in local.registry_users : user => "docker login -u ${user} -p${pass} ${var.domain}"
|
||||
}
|
||||
}
|
||||
|
||||
output "domain" {
|
||||
value = var.domain
|
||||
}
|
|
@ -3,13 +3,11 @@ variable "stack_name" {
|
|||
type = string
|
||||
description = "The name of the stack to create."
|
||||
}
|
||||
|
||||
variable "default_image" {
|
||||
default = "ghcr.io/home-assistant/home-assistant:stable"
|
||||
type = string
|
||||
description = "The image to use for the homeassistant service"
|
||||
}
|
||||
|
||||
variable "environment_variables" {
|
||||
type = map(string)
|
||||
default = {}
|
||||
|
|
|
@ -19,7 +19,6 @@ module "service" {
|
|||
ports = var.ports
|
||||
placement_constraints = var.placement_constraints
|
||||
}
|
||||
|
||||
locals {
|
||||
volumes = var.data_persist_path == null ? {
|
||||
"data" = "/var/lib/mysql"
|
||||
|
|
|
@ -16,7 +16,6 @@ variable "networks" {
|
|||
default = []
|
||||
description = "A list of network names to attach the service to."
|
||||
}
|
||||
|
||||
variable "traefik" {
|
||||
default = null
|
||||
type = object({
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
output "docker_service" {
|
||||
value = module.pgbackweb.docker_service
|
||||
}
|
||||
|
||||
output "postgres" {
|
||||
value = module.postgres
|
||||
}
|
||||
|
||||
output "network" {
|
||||
value = module.network.network
|
||||
}
|
Loading…
Reference in a new issue