Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 18, 2025
1 parent 0469313 commit 79131e0
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ dependency "eks_keycloak" {
mock_outputs_allowed_terraform_commands = ["init", "plan", "validate", "destroy"]
mock_outputs = {
public_endpoint = "mock.keycloak.example.com"
discovery_url = "mock.keycloak.example.com/auth"
client_id = "mock-client-id"
client_secret = "mock-client-secret"
}
}

Expand All @@ -65,11 +68,13 @@ inputs = {
# Gatekeeper Config
gogatekeeper_tag = include.root.inputs.gogatekeeper_tag
gogatekeeper_chart_version = include.root.inputs.gogatekeeper_chart_version
keycloak_public_url = dependency.eks_keycloak.outputs.public_endpoint
keycloak_discovery_url = dependency.eks_keycloak.outputs.discovery_url

# Service Behind Gatekeeper Config
service_name = "test-gc"
redirection_url = dependency.eks_grafana.outputs.public_endpoint
client_id = dependency.eks_keycloak.outputs.client_id
client_secret = dependency.eks_keycloak.outputs.client_secret
service_name = "test-gc"
upstream_url = dependency.eks_grafana.outputs.public_endpoint
redirection_url = dependency.eks_grafana.outputs.public_endpoint
client_id = dependency.eks_keycloak.outputs.client_id
client_secret = dependency.eks_keycloak.outputs.client_secret
keycloak_public_url = dependency.eks_keycloak.outputs.public_endpoint
}

0 comments on commit 79131e0

Please sign in to comment.