Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
change var to local
Browse files Browse the repository at this point in the history
  • Loading branch information
broadeditz committed Nov 29, 2023
1 parent 8d70f5c commit ac039fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/deployment.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ resource "kubernetes_secret" "app" {

data = {
"config.yaml" = templatefile("${path.module}/config.template.yaml", {
mongo_uri = var.infra.mongodb_uri
mongo_username = var.infra.mongodb_user_app.username
mongo_password = var.infra.mongodb_user_app.password
mongo_uri = local.infra.mongodb_uri
mongo_username = local.infra.mongodb_user_app.username
mongo_password = local.infra.mongodb_user_app.password
mongo_database = "7tv"
mongo_collection = "emotes"
meili_url = "http://meilisearch.database.svc.cluster.local:7700"
Expand Down

0 comments on commit ac039fa

Please sign in to comment.