Rename 1Password Vault

This commit is contained in:
2026-04-06 19:33:37 -07:00
parent 696813fc72
commit df1e1cbcad
8 changed files with 29 additions and 29 deletions

View File

@@ -7,14 +7,14 @@ locals {
// OP is 1Password for CLI
locals {
OP_DB_USER = "op://InfraSecrets/Umami/ENV_SECRETS/PostgresUsername"
OP_DB_PASSWORD = "op://InfraSecrets/Umami/ENV_SECRETS/PostgresPassword"
OP_AppSecret = "op://InfraSecrets/Umami/ENV_SECRETS/AppSecret"
OP_DB_USER = "op://Homelab/Umami/ENV_SECRETS/PostgresUsername"
OP_DB_PASSWORD = "op://Homelab/Umami/ENV_SECRETS/PostgresPassword"
OP_AppSecret = "op://Homelab/Umami/ENV_SECRETS/AppSecret"
}
locals {
USER_PASSWORD = "${local.OP_DB_USER}:${local.OP_DB_PASSWORD}"
UMAMI_APPSECRET = "${local.OP_AppSecret}"
UMAMI_DB_URL = "postgresql://${local.USER_PASSWORD}@127.0.0.1:5432/umami"
UMAMI_DB_TYPE = "postgresql"
@@ -46,7 +46,7 @@ job "umami" {
local_bind_address = "127.0.0.1"
local_bind_port = 5432
}
}
}
tags = ["traefik.enable=false"] # Hide envoy from traefik
}
}