Terraform - Unable to run multiple commands in local exec
I'm new to Terraform world. I'm trying to run a shell script using Terraform. Below is the main.tf file #Executing shell script via Null Resource resource "null_resource" "install_istio" { provisioner "local-exec" { command = <<EOT "chmod +x install-istio.sh" "./install-istio.sh" EOT interpreter = ["/bin/bash", "-c"] working_dir = "${path.module}" } }