Akash Masand
Akash Masand

Reputation: 1731

Deploy multiple linked ARM templates in Private Storage Container using single SAS token

I have a master ARM template that has 3 linked child templates located in a private storage in Azure. In order to deploy each of the linked templates I need to generate and pass 3 blob SAS (shared access signature) tokens(one each per template) and append it to the URI of the ARM template.

Is it possible to access all these 3 ARM templates in the private storage using a single SAS token (may be a container token)?

Upvotes: 1

Views: 420

Answers (1)

Joy Wang
Joy Wang

Reputation: 42043

Of course, you could generate container-level shared access signature URI in the Azure Storage Explorer to access it.

Right-click your file -> Get SAS -> choose the option in the screenshot

enter image description here

Or generate SAS token in the Azure portal, you could set allowed services and more details in it.

enter image description here

Upvotes: 1

Related Questions