shivam-shekhar
shivam-shekhar

Reputation: 477

Replace ARM Template with Terraform and deploy with Visual Studio

I am able to prepare the main.tf file comprising of my resources to be built on Azure ( Resource Group, Data Lake, Storage Account, data factory ) but need to replace it within the existing Visual Studio solution having ARM template defined. Post that need to deploy and execute the terraform file from VS but not sure how to do it .

Can someone please guide towards it ?

Upvotes: 2

Views: 540

Answers (1)

Lucas
Lucas

Reputation: 1341

There is no extension/integration of Terraform for Visual Studio (only for VS Code).

If you really need to trigger it from Visual Studio, an option would be to use the integrated terminal, but that would be the same as using an isolated Powershell or CMD terminal window.

Upvotes: 1

Related Questions