Forum Discussion
Automation for Installation of Software's Post VM Deployment
- Oct 04, 2021
Yes the first 2 can be
1. https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/virtual_machine_extensionand you can use below publisher and type for custom script :
publisher = "Microsoft.Compute"
type = "CustomScriptExtension"
2. https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/automation_dsc_configuration
3. You can also use Ansible with Terraform but that is something I don't have experience on .
Hi,
Thanks for the suggestion. Can these be used with terraform ?
Yes the first 2 can be
1. https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/virtual_machine_extension
and you can use below publisher and type for custom script :
publisher = "Microsoft.Compute"
type = "CustomScriptExtension"
2. https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/automation_dsc_configuration
3. You can also use Ansible with Terraform but that is something I don't have experience on .