Skip to content

robinchapas/ConvertToPolicy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

ConvertToPolicy using Shell

This tool converts an Azure Resource Graph query into a policy rule.

You can do the following :

  • Pass the effect to take in the policy.
  • Create a policy by passing a policy name to the script.

To run this tool, you'll need to setup your environment

  1. Download SetupGraphToPolicy.sh into cloud shell environment or your shell environement.
  2. Run "source ./SetupGraphToPolicy.sh"
  3. This will set up an alias and also install armclient in your shell.

Usage

You can run commands using graph2policy or ./GraphToPolicy script.

Examples

  1. Generate the policy rule from Graph query with a "deny" action.

graph2policy -q "where type contains 'compute'" -e "deny"

  1. Create a policy for a given graph query.

graph2policy -q "where type =~ 'microsoft.compute/virtualmachines' and isempty(aliases['Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk.id'])|summarize count()" --effect "audit" --create "AuditNonManagedDiskPolicy"

ConvertToPolicy using Powershell

This tool converts a Azure Resource Graph query into a policy rule.

You can do the following :

  • Pass what action to take in the policy
  • Create a policy by passing a policy name to the script.

To run this tool, you'll need to setup the environment

  1. Download GraphToPolicy.ps1 into cloud powershell environment or your powershell environement.
  2. Set up your environment as requested here https://docs.microsoft.com/en-us/azure/governance/resource-graph/first-query-powershell

Usage

go to your user folder. cd /home/username You can run commands using ./GraphToPolicy.ps1 script.

Examples

  1. Generate the policy rule from Graph query with a "deny" action.

./GraphToPolicy.ps1 -q "where type contains 'compute'" -e "deny"

  1. Create a policy for a given graph query

./GraphToPolicy.ps1 -q "where type =~ 'microsoft.compute/virtualmachines' and isempty(aliases['Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk.id'])|summarize count()" -effect "audit" -create "AuditNonManagedDiskPolicy"

About

Convert Azure resource graph queries into policies.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published