Reputation: 115
I am using Linked Template to deploy ARM template in Target env, While deploying I am storing the templates in blob contaier using “Azure File Copy” and generating URL and SAS token for the container.
But As my Storage account is configured via VNet/Subnet private endpoint, My ARM template deployment task is failing to download the Templates from the storage account.
I am checking for a workaround here, Please help me as soon as possible.
Upvotes: 0
Views: 818
Reputation: 3205
If you use Microsoft-hosted agents, please refer to this doc: Allowed address lists and network connections to configure your VNet/Subnet.
If you use private agents in pipeline, it will access to your Storage account via local network, please make sure that the local network can access to your Storage account.
In addition, you need to set up valid Azure Resource Manager service connection when using this Azure Resource Manager (ARM) Template Deployment Task.
Upvotes: 0