Skip to content

Commit

Permalink
keycloak wip
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 18, 2025
1 parent 5d2d47e commit 29bdf77
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lab/_envcommon/default-versions.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ locals {
keycloak_chart_version = "24.4.10"
keycloak_tag = "26.1.2"
keycloak_hostname = "keycloak"
postgresql_database = "keycloak_db"
postgresql_username = "keycloak_user"
postgresql_password = "secure_password"
################
# Kiali
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ dependency "eks_dns" {
}
}

dependency "eks_postgresql" {
config_path = "../eks-postgresql"
mock_outputs_allowed_terraform_commands = ["init", "plan", "validate", "destroy"]
mock_outputs = {
internal_endpoint {
url = "mock-internal-endpoint-url"
}
}
}

dependencies {
paths = [
"../eks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,9 @@ inputs = {
postgresql_repmgr_tag = include.root.inputs.postgresql_repmgr_tag
pgpool_tag = include.root.inputs.pgpool_tag
namespace = include.root.inputs.namespaces["postgresql"]

# Database Consumer Configuration
postgresql_database = include.root.inputs.postgresql_database
postgresql_username = include.root.inputs.postgresql_username
postgresql_password = include.root.inputs.postgresql_password
}

0 comments on commit 29bdf77

Please sign in to comment.