You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
value: replace(avmStorageAccount.outputs.serviceEndpoints.blob, 'blob.core.windows.net', 'privatelink.blob.core.windows.net') //TODO: replace with actual blob URL
1346
+
value: (deployment_param.enable_waf) ? replace(avmStorageAccount.outputs.serviceEndpoints.blob, 'blob.core.windows.net', 'privatelink.blob.core.windows.net') : avmStorageAccount.outputs.serviceEndpoints.blob//TODO: replace with actual blob URL
1347
1347
}
1348
1348
{
1349
1349
name: 'APP_STORAGE_QUEUE_URL'
1350
-
value: replace(avmStorageAccount.outputs.serviceEndpoints.queue, 'queue.core.windows.net', 'privatelink.queue.core.windows.net') //TODO: replace with actual queue URL
1350
+
value: (deployment_param.enable_waf) ? replace(avmStorageAccount.outputs.serviceEndpoints.queue, 'queue.core.windows.net', 'privatelink.queue.core.windows.net') : avmStorageAccount.outputs.serviceEndpoints.queue//TODO: replace with actual queue URL
0 commit comments