diff --git a/modules/products/bamboo/locals.tf b/modules/products/bamboo/locals.tf index a4f74743..3e092a15 100644 --- a/modules/products/bamboo/locals.tf +++ b/modules/products/bamboo/locals.tf @@ -3,7 +3,7 @@ locals { agent_name = "bamboo-agent" # Install local helm charts if local helm chart path is provided (for test purposes) - local_helm_charts_path = var.internal_use_e2e_path == null ? "" : "${var.internal_use_e2e_path}/src/main/charts" + local_helm_charts_path = var.local_helm_charts_path == null ? "" : "${var.local_helm_charts_path}/src/main/charts" use_local = fileexists("${local.local_helm_charts_path}/${product_name}/Chart.yaml") helm_chart_repository = local.use_local ? null : "https://atlassian.github.io/data-center-helm-charts" diff --git a/modules/products/bamboo/variables.tf b/modules/products/bamboo/variables.tf index 33c6d90a..bbc1e26c 100644 --- a/modules/products/bamboo/variables.tf +++ b/modules/products/bamboo/variables.tf @@ -104,8 +104,8 @@ variable "bamboo_agent_configuration" { } } -variable "internal_use_e2e_path" { - description = "This variable is reserved for internal use" +variable "local_helm_charts_path" { + description = "Path to local Helm charts repo to install local helm charts" type = string default = null } diff --git a/variables.tf b/variables.tf index b9b90ef0..56595af9 100644 --- a/variables.tf +++ b/variables.tf @@ -103,8 +103,8 @@ variable "bamboo_admin_email_address" { type = string } -variable "internal_use_e2e_path" { - description = "This variable is reserved for internal use" +variable "local_helm_charts_path" { + description = "Path to local Helm charts repo to install local helm charts" type = string default = null }