We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A new Azure policy is rolling out to block Storage accounts created with allowBlobPublicAccess: true.
allowBlobPublicAccess: true
The Azure Functions extension provides two ways to create a function app:
In both scenarios, we need to modify the ARM template creating the Azure Storage account to include the following resource property:
allowBlobPublicAccess: false
Only by doing so will the create pass validation.
I suspect the policy is rolling out to more Microsoft subscriptions, so more MS employees will hit this.
cc @nturinski
The text was updated successfully, but these errors were encountered:
allowBlobPublicAccess
false
Successfully merging a pull request may close this issue.
A new Azure policy is rolling out to block Storage accounts created with
allowBlobPublicAccess: true
.The Azure Functions extension provides two ways to create a function app:
In both scenarios, we need to modify the ARM template creating the Azure Storage account to include the following resource property:
allowBlobPublicAccess: false
Only by doing so will the create pass validation.
I suspect the policy is rolling out to more Microsoft subscriptions, so more MS employees will hit this.
cc @nturinski
The text was updated successfully, but these errors were encountered: