Skip to content

Commit

Permalink
Adjust variable oidc_issuer -> oidc_issuer_url
Browse files Browse the repository at this point in the history
  • Loading branch information
ayashkov committed Mar 20, 2024
1 parent 52154fc commit ab8da3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "helm_release" "headlamp" {
, var.issuer_name == null ? "" : <<-EOT
config:
oidc:
issuerURL: "${var.oidc_issuer}"
issuerURL: "${var.oidc_issuer_url}"
clientID: "${var.oidc_client_id}"
clientSecret: "${var.oidc_client_secret}"
scopes: "${var.oidc_scopes}"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ variable "issuer_type" {
}
}

variable "oidc_issuer" {
variable "oidc_issuer_url" {
type = string
default = ""
description = "OIDC issuer URL"
Expand Down

0 comments on commit ab8da3c

Please sign in to comment.