1

I'm working on backing up the Azure Network Security for Azure Stack.

I have used Azure Powershell and using that module I am able to export the existing config in a CSV and re deploy the stuff using CSV exported. My question would this module work on the Azure Stack, if not I am looking for some assistance using Azure RM template to back the existing config.

Manpreet
  • 119
  • 2
  • 8
  • since it works in azure it should work with azure stack, i'd probably use ARM Templates for that, though – 4c74356b41 Apr 09 '19 at 10:37
  • can you please share any reference for ARM templatees. I am not familiar with them much – Manpreet Apr 09 '19 at 10:39
  • https://github.com/Azure/azure-quickstart-templates/tree/master/101-security-group-create and reference: https://learn.microsoft.com/en-us/azure/templates/microsoft.network/2018-11-01/networksecuritygroups – 4c74356b41 Apr 09 '19 at 10:41

1 Answers1

1

I would recommnd using Azure Resource Manager templates for this purpose. You can build json files that describe the NSG. Examples of templates with nsg can be found in the quickstart gallery.

You can read More about Azure Resource Manager

Hope it helps.

Mohit Verma
  • 5,140
  • 2
  • 12
  • 27