fix
This commit is contained in:
21
apps/infisical/configs.tf
Normal file
21
apps/infisical/configs.tf
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user