[ci skip] Fix variable type mismatches in owntracks, ollama, tandoor stacks

- owntracks_credentials: string -> map(string)
- ollama_api_credentials: string -> map(string)
- tandoor_email_password: add default="" (not in tfvars)
This commit is contained in:
Viktor Barzin 2026-02-22 14:07:33 +00:00
parent 945a5f35b0
commit e2522ad9f1
3 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,5 @@
variable "tls_secret_name" { type = string }
variable "ollama_api_credentials" { type = string }
variable "ollama_api_credentials" { type = map(string) }
locals {
tiers = {

View file

@ -1,5 +1,5 @@
variable "tls_secret_name" { type = string }
variable "owntracks_credentials" { type = string }
variable "owntracks_credentials" { type = map(string) }
locals {
tiers = {

View file

@ -1,6 +1,9 @@
variable "tls_secret_name" { type = string }
variable "tandoor_database_password" { type = string }
variable "tandoor_email_password" { type = string }
variable "tandoor_email_password" {
type = string
default = ""
}
locals {
tiers = {