I am trying to create a vm-series FW in Azure using Terraform. I am following this example: https://github.com/PaloAltoNetworks/terraform-azurerm-panos-bootstrap But I get a similar error to this one in the bootstrap status and log. https://knowledgebase.paloaltonetworks.com/KCSArticleDetail?id=kA10g000000PP7jCAG I have tried using the same parameters via the marketplace ARM template and the bootstrap completes successfully so I think my bootstrap file share is set up correct. My snippet of Terraform code looks like this. os_profile { computer_name = var.FirewallVmName admin_username = var.adminUsername admin_password = var.adminPassword custom_data = join( ",", [ "storage-account=mystgacct", "access-key=mystgacctkey", "file-share=myfileshare" ], ) } Any pointers are appreciated. Even the CLI commands I need to view what parameters actually get passed into the Vm-series would help.
... View more