Trying to figure out the proper way to pass named arguments to my powershell script using terraform local-exec.
Do I need to quote delimit params in this case like so?
provisioner "local-exec" {
command = "powershell -file ../BindCert.ps1 -certString '${var.cert_string_b64}' -certPassword '${var.cert_password}' -certThumbprint '${var.cert_thumbprint}' -certName '${var.cert_name}'"
}
Windows 10 Powershell 5.1
