Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use factory method to create policy eval functions #363

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
terraform fmt
  • Loading branch information
paullatzelsperger committed Oct 22, 2024
commit 566afb34994730dfe147972ada00a38bfd6e7c8c
3 changes: 1 addition & 2 deletions deployment/modules/identity-hub/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

resource "kubernetes_deployment" "identityhub" {
metadata {
name = lower(var.humanReadableName)
name = lower(var.humanReadableName)
namespace = var.namespace
labels = {
App = lower(var.humanReadableName)
Expand Down Expand Up @@ -163,7 +163,6 @@ resource "kubernetes_config_map" "identityhub-config" {
EDC_SQL_SCHEMA_AUTOCREATE = true
EDC_STS_ACCOUNT_API_URL = var.sts-accounts-api-url
EDC_STS_ACCOUNTS_API_AUTH_HEADER_VALUE = "password"
EDC_IAM_ACCESSTOKEN_JTI_VALIDATION = true
}
}

Expand Down
Loading