We have storage account on Azure with public access of container. We have already shared this public URL of this blob with our customer. Due to security reason, we have to make this container private so we can restrict anonymous access.
Now the problem is that how we can access static content (e.g. js) from private container?
- One option is SAS url but this won't work because our customer needs to access js file and SAS url has some expiry. So all time we need to renew sas url and customers have to replace it with older one which increases maintenance.
- AAD is also not an option.
- Azure cdn can work with sas token only.
Any other suggestions or input on how to access static js files from storage container with private access level. Also suggest if there is any other Azure service which can fulfil this requirement. Thanks in advance.