{"id":412,"date":"2024-03-05T15:01:26","date_gmt":"2024-03-05T15:01:26","guid":{"rendered":"http:\/\/192.168.100.7\/?p=412"},"modified":"2024-03-15T07:58:36","modified_gmt":"2024-03-15T07:58:36","slug":"how-do-i-govern-my-governance","status":"publish","type":"post","link":"https:\/\/www.azuregovernanceguard.com\/?p=412","title":{"rendered":"How do I govern my Governance (policies)"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In the ever-changing tech world, Azure policies are now a big deal. These policies aren&#8217;t just technical jargon, but essential components that ensure the smooth and secure operation of our systems. The challenge lies not only in implementing these policies but also in keeping track of the changes that occur.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So, what kind of changes are we talking about? Essentially, there are two main areas of focus. Firstly, we need to ensure that our Azure policies are functioning as they should. Regular checks are necessary to ensure they still meet all the required standards. Sometimes, an Azure policy might no longer be in effect, or new resources that don\u2019t fit the policy might have been added. This usually happens when we use the Audit Policy.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, merely ensuring everything is in compliant is not enough. We also need to monitor any changes made to the Azure policies themselves. It&#8217;s easy to fall into the trap of thinking that once our policies are in place, everything is under control. But, in reality, things can change.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">These changes primarily occur in four forms: deletion of a policy assignment, creation of an \u201cexemption,\u201d setting up an \u201coverride,\u201d or a change in policy. Each of these changes demands our attention to maintain system security.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So, how can we monitor all these changes? The answer lies in Alerts. Alerts serve as an early warning system, notifying us about any changes, keeping us in the loop at all times.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Creating Alerts when a policy isn&#8217;t compliant.<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In the first case, we can use alerts to keep an eye on Azure Policy Compliance states. This idea is shown in Tao Yang&#8217;s work, &#8220;<a href=\"https:\/\/blog.tyang.org\/2023\/09\/30\/natively0monitoring-azure-policy-compliance-states-in-azure-monitor-2023-edition\/\" class=\"ek-link\">Natively Monitoring Azure Policy Compliance States in Azure Monitor &#8211; 2023 Edition<\/a>&#8220;. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This approach essentially involves utilizing alerts to actively track the compliance of your policies. It works by setting up a system that triggers an alert when a policy is no longer compliant. The key to this strategy is the Azure Resource Graph (ARG).<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"945\" height=\"715\" src=\"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png\" alt=\"\" class=\"wp-image-416\" srcset=\"https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-6.png 945w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-6-300x227.png 300w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-6-768x581.png 768w\" sizes=\"auto, (max-width: 945px) 100vw, 945px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Monitoring changes to a Policy<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In the second situation, monitoring alterations to the policy configuration, multiple alerts can be established to track these changes. One of the main changes that should raise a red flag is the removal of a policy assignment. Policies are there to guarantee the system&#8217;s security and smooth running, so the deletion of a policy assignment could potentially lead to issues or disruptions. This action is critical and requires immediate attention.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Policy Removal Alert<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To keep an eye on this behavior, we can set up an alert. This alert will actively monitor any activities related to the removal of policy assignments within the Azure governance system. It is designed to spring into action when it spots the &#8216;<strong>MICROSOFT.AUTHORIZATION\/POLICYASSIGNMENTS\/DELETE<\/strong>&#8216; operation, signaling that a policy assignment has been taken away.<br><br>Here&#8217;s how you create such an alert with code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">AzureActivity \n| where CategoryValue =='Administrative' \n| where OperationNameValue == 'MICROSOFT.AUTHORIZATION\/POLICYASSIGNMENTS\/DELETE' \n| where ActivityStatusValue == 'Success' \n| project TimeGenerated, CategoryValue, OperationNameValue, CorrelationId, Level, _ResourceId, Caller, Properties<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"296\" src=\"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-10-1024x296.png\" alt=\"\" class=\"wp-image-426\" srcset=\"https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-10-1024x296.png 1024w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-10-300x87.png 300w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-10-768x222.png 768w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-10.png 1269w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Exemption Created<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Likewise, it&#8217;s crucial to keep tabs on the initiation of policy exemptions. Policy exemptions occur when a certain resource or scope is excused from adhering to the Azure policy. This could potentially create risks or result in non-compliance with the overarching system governance, making it a vital action to supervise.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We can set up an alert to keep track of this. This alert will spring into action when it identifies the &#8216;<strong>MICROSOFT.AUTHORIZATION\/POLICYEXEMPTIONS\/WRITE<\/strong>&#8216; operation, indicating that a policy exemption has been created.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s how you create such an alert with code:<br><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">AzureActivity \n| where CategoryValue =='Administrative' \n| where OperationNameValue == 'MICROSOFT.AUTHORIZATION\/POLICYEXEMPTIONS\/WRITE' \n| where ActivityStatusValue == 'Success' \n| project TimeGenerated, CategoryValue, OperationNameValue, CorrelationId, Level, _ResourceId, Caller, Properties<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"945\" height=\"387\" src=\"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-8.png\" alt=\"\" class=\"wp-image-418\" srcset=\"https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-8.png 945w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-8-300x123.png 300w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-8-768x315.png 768w\" sizes=\"auto, (max-width: 945px) 100vw, 945px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Policy assignment Creation\/Modification Alert<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Keeping an eye on changes made to an existing policy assignment or when new ones are set up is equally important, and setting up an alert for it would be helpful.  This could involve changes in policy scope, adjustments to parameters, or the establishment of an override or creating a new assignment<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This alert springs into action when it detects a &#8216;<strong>MICROSOFT.AUTHORIZATION\/POLICYASSIGNMENTS\/WRITE<\/strong>&#8216; operation. This signals that a policy assignment has been tweaked. This will also monitor aditional policy assigmentemtns<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s how you create such an alert with code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">AzureActivity \n| where CategoryValue =='Administrative' \n| where OperationNameValue == 'MICROSOFT.AUTHORIZATION\/POLICYASSIGNMENTS\/WRITE'\n| where ActivityStatusValue == 'Success' \n| project TimeGenerated, CategoryValue, OperationNameValue, CorrelationId, Level, _ResourceId, Caller, Properties<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Policy Definition Modification Alert<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Keeping track of changes to policy definitions is a critical part of Azure governance. Such alterations can influence the system&#8217;s governance and security, possibly changing rules or leading to compliance problems.<br><br>For policy definition modifications, the alert should be configured to activate when it identifies a &#8216;MICROSOFT.AUTHORIZATION\/POLICYDEFINITIONS\/WRITE&#8217; operation. This operation indicates that a policy definition, which could govern anything from resource creation to user access, has been modified.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s how you create such an alert with code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">AzureActivity \n| where CategoryValue =='Administrative' \n| where OperationNameValue == 'MICROSOFT.AUTHORIZATION\/POLICYDEFINITIONS\/WRITE' \n| where ActivityStatusValue == 'Success' \n| project TimeGenerated, CategoryValue, OperationNameValue, CorrelationId, Level, _ResourceId, Caller, Properties<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"953\" height=\"305\" src=\"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-9.png\" alt=\"\" class=\"wp-image-425\" srcset=\"https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-9.png 953w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-9-300x96.png 300w, https:\/\/www.azuregovernanceguard.com\/wp-content\/uploads\/2024\/02\/image-9-768x246.png 768w\" sizes=\"auto, (max-width: 953px) 100vw, 953px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Policy or Policy Set Deletion Alert<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Monitoring the deletion of policy definitions and policy set definitions is an element of Azure governance. These actions can notably influence the system&#8217;s governance and security, potentially creating vulnerabilities or resulting in compliance violations. Therefore, setting up alerts for these events is of great importance. Additionally, it&#8217;s important to note that in Azure, it&#8217;s not possible to remove a policy that is currently assigned. All assignments must be removed first before a policy can be deleted. This serves as a protective measure to avoid unintended deletion of active policies that could potentially lead to security threats or compliance issues.<br><br>In the case of policy definitions removals, the alert should be configured to activate when it identifies a &#8216;<strong>MICROSOFT.AUTHORIZATION\/POLICYDEFINITIONS\/DELETE<\/strong>&#8216; operation. This operation signifies that a policy definition, which could govern anything from resource creation to user access, has been deleted. Here&#8217;s the code to create such an alert:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">AzureActivity\u00a0\u00a0\n| where CategoryValue =='Administrative'\u00a0\n| where OperationNameValue == 'MICROSOFT.AUTHORIZATION\/POLICYDEFINITIONS\/DELETE'\u00a0\n| where ActivityStatusValue == 'Success'\u00a0\u00a0\n| project TimeGenerated, CategoryValue, OperationNameValue, CorrelationId, Level, _ResourceId, Caller, Properties<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;<br>Similarly, policy set definitions removals are also significant events that need monitoring. To monitor these removals, the alert should be set to trigger when it detects a &#8216;<strong>MICROSOFT.AUTHORIZATION\/POLICYSETDEFINITIONS\/DELETE<\/strong>&#8216; operation. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s how you create such an alert with code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">AzureActivity\u00a0\u00a0| where CategoryValue =='Administrative'\n| where OperationNameValue == 'MICROSOFT.AUTHORIZATION\/POLICYSETDEFINITIONS\/DELETE'\n| where ActivityStatusValue == 'Success'\n| project TimeGenerated, CategoryValue, OperationNameValue, CorrelationId, Level, _ResourceId, Caller, Properties<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">With these alerts in operation, you will receive notifications every time a policy or policy set definition is removed. This enables you to respond promptly to such changes, thus ensuring the system&#8217;s integrity is preserved and potential compliance issues are addressed without delay. As with the previous examples, this code serves as a general guideline, and the actual code might vary based on your specific Azure environment requirements.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Wrapping it up, handling Azure policies isn&#8217;t a set-and-forget deal. It&#8217;s all about staying on top of things. We can&#8217;t just set up policies and hope for the best. Regular check-ups are a must to make sure our policies are doing what they&#8217;re supposed to. And that&#8217;s not all. We also have to keep a close eye on any changes or exceptions. That&#8217;s where alerts come into play. They&#8217;re our early warning system that lets us know when something&#8217;s up so we can jump in and fix it. Plus, using Azure Resource Graph (ARG) can give us a real-time look at how our policies are doing. All in all, if we keep an eye on things and act fast when needed, we can keep our Azure policies in check and our systems running smoothly.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts. &hellip; <a href=\"https:\/\/www.azuregovernanceguard.com\/?p=412\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\">How do I govern my Governance (policies)<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-412","post","type-post","status-publish","format-standard","hentry","category-azure-policy"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Eelco Labordus\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.azuregovernanceguard.com\/?p=412\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Azure Governance Guard -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How do I govern my Governance (policies) - Azure Governance Guard\" \/>\n\t\t<meta property=\"og:description\" content=\"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.azuregovernanceguard.com\/?p=412\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"945\" \/>\n\t\t<meta property=\"og:image:height\" content=\"715\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-03-05T15:01:26+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-03-15T07:58:36+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@EelcoLabordus\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How do I govern my Governance (policies) - Azure Governance Guard\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@EelcoLabordus\" \/>\n\t\t<meta name=\"twitter:image\" content=\"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#blogposting\",\"name\":\"How do I govern my Governance (policies) - Azure Governance Guard\",\"headline\":\"How do I govern my Governance (policies)\",\"author\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/192.168.100.7\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-6.png\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412\\\/#articleImage\"},\"datePublished\":\"2024-03-05T15:01:26+00:00\",\"dateModified\":\"2024-03-15T07:58:36+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#webpage\"},\"articleSection\":\"Azure Policy\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.azuregovernanceguard.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?cat=14#listItem\",\"name\":\"Azure Policy\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?cat=14#listItem\",\"position\":2,\"name\":\"Azure Policy\",\"item\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?cat=14\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#listItem\",\"name\":\"How do I govern my Governance (policies)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#listItem\",\"position\":3,\"name\":\"How do I govern my Governance (policies)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?cat=14#listItem\",\"name\":\"Azure Policy\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/#person\",\"name\":\"Eelco Labordus\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e156d3802a198fc2a5ec87dfdd45a0822a113d40bc8e55917bb5b76065e8322c?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Eelco Labordus\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?author=1\",\"name\":\"Eelco Labordus\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e156d3802a198fc2a5ec87dfdd45a0822a113d40bc8e55917bb5b76065e8322c?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Eelco Labordus\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#webpage\",\"url\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412\",\"name\":\"How do I govern my Governance (policies) - Azure Governance Guard\",\"description\":\"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?p=412#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/?author=1#author\"},\"datePublished\":\"2024-03-05T15:01:26+00:00\",\"dateModified\":\"2024-03-15T07:58:36+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/#website\",\"url\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/\",\"name\":\"Azure Governance Guard\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.azuregovernanceguard.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How do I govern my Governance (policies) - Azure Governance Guard","description":"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.","canonical_url":"https:\/\/www.azuregovernanceguard.com\/?p=412","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#blogposting","name":"How do I govern my Governance (policies) - Azure Governance Guard","headline":"How do I govern my Governance (policies)","author":{"@id":"https:\/\/www.azuregovernanceguard.com\/?author=1#author"},"publisher":{"@id":"https:\/\/www.azuregovernanceguard.com\/#person"},"image":{"@type":"ImageObject","url":"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412\/#articleImage"},"datePublished":"2024-03-05T15:01:26+00:00","dateModified":"2024-03-15T07:58:36+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#webpage"},"isPartOf":{"@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#webpage"},"articleSection":"Azure Policy"},{"@type":"BreadcrumbList","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.azuregovernanceguard.com#listItem","position":1,"name":"Home","item":"https:\/\/www.azuregovernanceguard.com","nextItem":{"@type":"ListItem","@id":"https:\/\/www.azuregovernanceguard.com\/?cat=14#listItem","name":"Azure Policy"}},{"@type":"ListItem","@id":"https:\/\/www.azuregovernanceguard.com\/?cat=14#listItem","position":2,"name":"Azure Policy","item":"https:\/\/www.azuregovernanceguard.com\/?cat=14","nextItem":{"@type":"ListItem","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#listItem","name":"How do I govern my Governance (policies)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.azuregovernanceguard.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#listItem","position":3,"name":"How do I govern my Governance (policies)","previousItem":{"@type":"ListItem","@id":"https:\/\/www.azuregovernanceguard.com\/?cat=14#listItem","name":"Azure Policy"}}]},{"@type":"Person","@id":"https:\/\/www.azuregovernanceguard.com\/#person","name":"Eelco Labordus","image":{"@type":"ImageObject","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/e156d3802a198fc2a5ec87dfdd45a0822a113d40bc8e55917bb5b76065e8322c?s=96&d=mm&r=g","width":96,"height":96,"caption":"Eelco Labordus"}},{"@type":"Person","@id":"https:\/\/www.azuregovernanceguard.com\/?author=1#author","url":"https:\/\/www.azuregovernanceguard.com\/?author=1","name":"Eelco Labordus","image":{"@type":"ImageObject","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/e156d3802a198fc2a5ec87dfdd45a0822a113d40bc8e55917bb5b76065e8322c?s=96&d=mm&r=g","width":96,"height":96,"caption":"Eelco Labordus"}},{"@type":"WebPage","@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#webpage","url":"https:\/\/www.azuregovernanceguard.com\/?p=412","name":"How do I govern my Governance (policies) - Azure Governance Guard","description":"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.azuregovernanceguard.com\/#website"},"breadcrumb":{"@id":"https:\/\/www.azuregovernanceguard.com\/?p=412#breadcrumblist"},"author":{"@id":"https:\/\/www.azuregovernanceguard.com\/?author=1#author"},"creator":{"@id":"https:\/\/www.azuregovernanceguard.com\/?author=1#author"},"datePublished":"2024-03-05T15:01:26+00:00","dateModified":"2024-03-15T07:58:36+00:00"},{"@type":"WebSite","@id":"https:\/\/www.azuregovernanceguard.com\/#website","url":"https:\/\/www.azuregovernanceguard.com\/","name":"Azure Governance Guard","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.azuregovernanceguard.com\/#person"}}]},"og:locale":"en_US","og:site_name":"Azure Governance Guard -","og:type":"article","og:title":"How do I govern my Governance (policies) - Azure Governance Guard","og:description":"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.","og:url":"https:\/\/www.azuregovernanceguard.com\/?p=412","og:image":"https:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png","og:image:secure_url":"https:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png","og:image:width":"945","og:image:height":"715","article:published_time":"2024-03-05T15:01:26+00:00","article:modified_time":"2024-03-15T07:58:36+00:00","twitter:card":"summary_large_image","twitter:site":"@EelcoLabordus","twitter:title":"How do I govern my Governance (policies) - Azure Governance Guard","twitter:description":"In the dynamic tech landscape, Azure policies are critical for system security and operation, requiring regular updates and monitoring for changes using alerts.","twitter:creator":"@EelcoLabordus","twitter:image":"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png"},"aioseo_meta_data":{"post_id":"412","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"Governance","score":51,"analysis":{"keyphraseInTitle":{"score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"score":3,"maxScore":9,"error":1},"keyphraseLength":{"score":9,"maxScore":9,"error":0,"length":1},"keyphraseInURL":{"score":5,"maxScore":5,"error":0},"keyphraseInIntroduction":{"score":3,"maxScore":9,"error":1},"keyphraseInSubHeadings":{"score":3,"maxScore":9,"error":1},"keyphraseInImageAlt":{"score":3,"maxScore":9,"error":1},"keywordDensity":{"score":0,"type":"low","maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"content","og_image_url":"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png","og_image_width":"945","og_image_height":"715","og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"content","twitter_image_url":"http:\/\/192.168.100.7\/wp-content\/uploads\/2024\/02\/image-6.png","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-02-23 10:11:57","updated":"2025-06-04 04:20:34","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.azuregovernanceguard.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.azuregovernanceguard.com\/?cat=14\" title=\"Azure Policy\">Azure Policy<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow do I govern my Governance (policies)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.azuregovernanceguard.com"},{"label":"Azure Policy","link":"https:\/\/www.azuregovernanceguard.com\/?cat=14"},{"label":"How do I govern my Governance (policies)","link":"https:\/\/www.azuregovernanceguard.com\/?p=412"}],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=\/wp\/v2\/posts\/412","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=412"}],"version-history":[{"count":17,"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=\/wp\/v2\/posts\/412\/revisions"}],"predecessor-version":[{"id":488,"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=\/wp\/v2\/posts\/412\/revisions\/488"}],"wp:attachment":[{"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=412"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=412"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.azuregovernanceguard.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=412"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}