diff --git a/packer/variables.pkr.hcl b/packer/variables.pkr.hcl index 1f35e1c..bfd272e 100644 --- a/packer/variables.pkr.hcl +++ b/packer/variables.pkr.hcl @@ -24,6 +24,7 @@ variable "repo_username" {} variable "repo_password" { sensitive = true } -locals { - iso_authenticatedurl = "https://${var.repo_username}:${var.repo_password}@${var.iso_url}" -} \ No newline at end of file +local "iso_authenticatedurl" { + expression = "https://${var.repo_username}:${var.repo_password}@${var.iso_url}" + sensitive = true +}