add ingress factory stub [ci skip]

This commit is contained in:
Viktor Barzin 2025-01-14 20:12:26 +00:00
parent 4a1106bad9
commit 8713946352
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
6 changed files with 294 additions and 0 deletions

View file

@ -77,6 +77,8 @@ variable "cloudflare_proxied_names" {}
variable "cloudflare_non_proxied_names" {}
variable "owntracks_credentials" {}
variable "dawarich_database_password" {}
variable "tandoor_database_password" {}
variable "tandoor_email_password" {}
resource "null_resource" "core_services" {
# List all the core modules that must be provisioned first
@ -575,3 +577,9 @@ module "changedetection" {
source = "./changedetection"
tls_secret_name = var.tls_secret_name
}
module "tandoor" {
source = "./tandoor"
tls_secret_name = var.tls_secret_name
tandoor_database_password = var.tandoor_database_password
tandoor_email_password = var.tandoor_email_password
}