Whitespace

This commit is contained in:
Greyscale 2025-02-14 21:26:48 +01:00
parent eeca39baa8
commit 93f0f03cd7
Signed by: grey
GPG key ID: DDB392AE64B32D89
5 changed files with 0 additions and 7 deletions
products
docker_registry
homeassistant
mysql
pgadmin
pgbackweb

View file

@ -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
}

View file

@ -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 = {}

View file

@ -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"

View file

@ -16,7 +16,6 @@ variable "networks" {
default = []
description = "A list of network names to attach the service to."
}
variable "traefik" {
default = null
type = object({

View file

@ -1,11 +1,9 @@
output "docker_service" {
value = module.pgbackweb.docker_service
}
output "postgres" {
value = module.postgres
}
output "network" {
value = module.network.network
}