Diagnostic Settings for App Service & Function App #136
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview/Summary
App Service & Function App can be deployed in various scenarios such as Windows, Linux and in containers. Each scenario is represented as
kind
property and therefore each needs to be support for Diagnostic Setting policies.The approach taken is to expand the existing policy definitions to include additional kinds. The scenarios now supported:
Kinds for App Service deployments
app
(Windows)app,linux
(Linux)app,linux,container
(Linux + Container)Kinds for Function App deployments
functionapp
(Windows)functionapp,linux
(Linux)functionapp,linux,container
(Linux + Container)This is made possible because there are no configuration change between the kinds in each type of deployment. It was verified by:
App Service
Function App
This PR fixes/adds/changes/removes
Expands on #133 to support additional scenarios.
Fixes #132
Breaking Changes
None
Testing Evidence
Ensure policies are updated with the revised rules:
Ensure policy evaluation identifies resources that requires diagnostic settings across each scenario:
To manually trigger a policy scan
az policy state trigger-scan --subscription <<SUB_ID>>
Remediate non-compliant resources
Verify diagnostic settings turned on
As part of this Pull Request I have
main
branch