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

Commit

Permalink
fix(newsletter): add necessary variable for newsletter subscription
Browse files Browse the repository at this point in the history
  • Loading branch information
hugotiburtino committed Jan 26, 2024
1 parent 364ff59 commit 6d5b2b7
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions auth.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,17 @@ module "hydra" {
}

module "kratos" {
source = "github.com/serlo/infrastructure-modules-shared.git//kratos?ref=v17.4.1"

namespace = kubernetes_namespace.auth_namespace.metadata.0.name
dsn = "postgres://${var.postgres_username_default}:${var.kpi_kpi_database_password_default}@${module.gcloud_postgres.database_private_ip_address}/kratos"
host = "kratos.${local.domain}"
smtp_password = var.athene2_php_smtp_password
chart_version = local.ory_chart_version
image_tag = local.kratos.image_tag
domain = local.domain
nbp_client = var.kratos_nbp_client
source = "github.com/serlo/infrastructure-modules-shared.git//kratos?ref=v17.7.0"

namespace = kubernetes_namespace.auth_namespace.metadata.0.name
dsn = "postgres://${var.postgres_username_default}:${var.kpi_kpi_database_password_default}@${module.gcloud_postgres.database_private_ip_address}/kratos"
host = "kratos.${local.domain}"
smtp_password = var.athene2_php_smtp_password
chart_version = local.ory_chart_version
image_tag = local.kratos.image_tag
domain = local.domain
nbp_client = var.kratos_nbp_client
newsletter_api_key = var.athene2_php_newsletter_key
}


Expand Down

0 comments on commit 6d5b2b7

Please sign in to comment.