Skip to content

Commit

Permalink
fix(k3d-github): fix typo in oidc client module call (#752)
Browse files Browse the repository at this point in the history
Co-authored-by: John Dietz <john@kubefirst.com>
  • Loading branch information
FalcoSuessgott and johndietz committed Apr 27, 2024
1 parent 5aa6d47 commit 426a470
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions k3d-github/terraform/vault/oidc-clients.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,21 @@ module "argocd" {
secret_mount_path = vault_mount.secret.path
}

module "gitlab" {
source = "./modules/oidc-client"

depends_on = [
vault_identity_oidc_provider.kubefirst
]

app_name = "gitlab"
oidc_provider_key_name = vault_identity_oidc_key.key.name
redirect_uris = [
"https://gitlab.<DOMAIN_NAME>/users/auth/openid_connect/callback",
]
secret_mount_path = vault_mount.secret.path
}

module "console" {
source = "./modules/oidc-client"

Expand Down

0 comments on commit 426a470

Please sign in to comment.