This commit is contained in:
2024-01-28 10:00:47 +01:00
parent ccb828c881
commit 0961759af7
173 changed files with 449 additions and 8800 deletions

21
apps/infisical/configs.tf Normal file
View File

@@ -0,0 +1,21 @@
resource "kubectl_manifest" "config" {
yaml_body = <<-EOF
apiVersion: v1
kind: ConfigMap
metadata:
name: "${var.component}-${var.instance}"
namespace: "${var.namespace}"
labels: ${jsonencode(local.common-labels)}
data:
INVITE_ONLY_SIGNUP: ""
REDIS_URL: "${module.redis.url}"
SITE_URL: "https://${local.dns_name}"
SMTP_FROM_ADDRESS: ""
SMTP_FROM_NAME: "Infisical"
SMTP_HOST: ""
SMTP_PASSWORD: ""
SMTP_PORT: "587"
SMTP_SECURE: ""
SMTP_USERNAME: ""
EOF
}