Skip to content

Commit

Permalink
Renamed hostname variable to public_hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
zawac002 committed Sep 12, 2023
1 parent 50700df commit f022573
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ resource "helm_release" "kiali" {

set {
name = "publicHostname"
value = var.hostname
value = var.public_hostname
}
set {
name = "publicDomain"
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ variable "keycloak_realm" {
default = null
}

variable "hostname" {
description = "The hostname to use for the kiali deployment"
variable "public_hostname" {
description = "The hostname to use for kiali that will be publicly available"
default = "kiali"
}

Expand Down

0 comments on commit f022573

Please sign in to comment.