From f022573c801ddaf59cadc3365bbae8ff3ce6912f Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Tue, 12 Sep 2023 14:41:43 -0400 Subject: [PATCH] Renamed hostname variable to public_hostname --- main.tf | 2 +- variables.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.tf b/main.tf index 9e76dbb..a39716e 100644 --- a/main.tf +++ b/main.tf @@ -124,7 +124,7 @@ resource "helm_release" "kiali" { set { name = "publicHostname" - value = var.hostname + value = var.public_hostname } set { name = "publicDomain" diff --git a/variables.tf b/variables.tf index 24aace1..ffc9394 100644 --- a/variables.tf +++ b/variables.tf @@ -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" }