diff --git a/products/docker_registry/outputs.tf b/products/docker_registry/outputs.tf index 14df263..ab377fe 100644 --- a/products/docker_registry/outputs.tf +++ b/products/docker_registry/outputs.tf @@ -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 } \ No newline at end of file diff --git a/products/homeassistant/inputs.tf b/products/homeassistant/inputs.tf index a0fb32a..1fec513 100644 --- a/products/homeassistant/inputs.tf +++ b/products/homeassistant/inputs.tf @@ -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 = {} diff --git a/products/mysql/mysql.tf b/products/mysql/mysql.tf index 51d1c4b..783292c 100644 --- a/products/mysql/mysql.tf +++ b/products/mysql/mysql.tf @@ -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" diff --git a/products/pgadmin/inputs.tf b/products/pgadmin/inputs.tf index 5c03f2b..4ef317c 100644 --- a/products/pgadmin/inputs.tf +++ b/products/pgadmin/inputs.tf @@ -16,7 +16,6 @@ variable "networks" { default = [] description = "A list of network names to attach the service to." } - variable "traefik" { default = null type = object({ diff --git a/products/pgbackweb/outputs.tf b/products/pgbackweb/outputs.tf index 3c4219d..4689c21 100644 --- a/products/pgbackweb/outputs.tf +++ b/products/pgbackweb/outputs.tf @@ -1,11 +1,9 @@ output "docker_service" { value = module.pgbackweb.docker_service } - output "postgres" { value = module.postgres } - output "network" { value = module.network.network } \ No newline at end of file