aareet / policy-library-azure

A collection of Azure compute Sentinel policies

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Microsoft Azure Policies Library

This repository contains a library of policies that can be used within Terraform Cloud to accelerate your adoption of policy as code. To learn more about the Sentinel language and framework, please review the Sentinel documentation.


Table of Contents


Prerequisites

back to top

Before you start adopting some of the policies within this library, it is recommended that you do the following:

  1. Install the Sentinel CLI. The CLI is an excellent tool for familiarizing yourself with the internals of Sentinel and allows you to apply and test policies outside of the Terraform platform. You can find more information related to the Sentinel CLI in the Enforce Policy with Sentinel learning track.

  2. Enable the policies feature in Terraform Cloud (currently available on all Trial, Team & Governance, Business and Flex plans).

  3. Gain access to a supported version control system (VCS) provider.

NOTE: Terraform Policies is only available to customers that are on an eligible Terraform Cloud plan. You can learn more about changing your payment plan by reviewing the Changing Your Payment Plan sections in the Terraform Cloud documentation.


Documentation

back to top

The file and directory structure within this repository has been designed to have a ROOT directory that contains all policies broken down by category. As an example, all compute policies are located within ./policies/compute/. Policies are then broken down by cloud service provider (i.e. AWS, Azure and GCP) and then categorized by cloud service (i.e. Compute, Databases, Networking etc.)

.
└── ROOT
    └── POLICIES
       └── CATEGORY
           └── POLICY
               └── ...

All CATEGORY related directories contain a single README.md that details all information that is required to assess and enforce a policy in Terraform Cloud. This information includes:

  • Policy name
  • Description of the controls that are evaluated
  • The Policy Set configuration that needs to be added to the sentinel.hcl file.

Note: You can find a full list of all available policies in the Policy Guides section.


Setup & Integration

back to top

Before you can use any of the policies within this library, you will need to configure Terraform Cloud. The following sections detail the high-level steps required to deploy a policy from the foundational policies library. The Enforce Policy with Sentinel learning track covers the end-to-end process in greater detail. If this is the first time you are setting up a Sentinel policy, we encourage you to familiarize yourself with this track prior to continuing further.

Version Control System (VCS)

Terraform Cloud provides first-class support for VCS integration. This allows VCS repositories to contain all of the policies and configuration needed to manage Sentinel policy at scale. Integrating with VCS is as simple as:

  1. Connect a VCS Provider to Terraform Cloud
  2. Create a repository in your VCS provider that will be used as the source of your Policy Set configuration
  3. Clone the source repository to a local directory

Policy Set Configuration

Once the VCS is integrated with Terraform Cloud, start to configure your Terraform Policy Set as follows:

  1. Identifying a policy from the foundational policies library that should be enforced on a Terraform Workspace
  2. Review the policy documentation and copy the configuration snippet for the policy of choice.
  3. Create a sentinel.hcl configuration file within the local directory for your repository.
  4. Edit the contents of the sentinel.hcl by pasting the configuration snippet into the body of the configuration file.
  5. Commit your changes to your local repository content and then use the git push command to upload the changes to your remote repository.

Example Snippet

policy "gcp-cis-7.1-kubernetes-ensure-stackdriver-logging-is-set-to-enabled-on-kubernetes-engine-clusters" {
   source = "https://raw.githubusercontent.com/hashicorp/terraform-foundational-policies-library/master/cis/gcp/kubernetes/>gcp-cis-7.1-kubernetes-ensure-stackdriver-logging-is-set-to-enabled-on-kubernetes-engine-clusters/gcp-cis-7.>1-kubernetes-ensure-stackdriver-logging-is-set-to-enabled-on-kubernetes-engine-clusters.sentinel"
   enforcement_level = "advisory"
}

policy "gcp-cis-7.2-kubernetes-ensure-stackdriver-monitoring-is-set-to-enabled-on-kubernetes-engine-clusters" {
   source = "https://raw.githubusercontent.com/hashicorp/terraform-foundational-policies-library/master/cis/gcp/kubernetes/>gcp-cis-7.2-kubernetes-ensure-stackdriver-monitoring-is-set-to-enabled-on-kubernetes-engine-clusters/gcp-cis-7.>2-kubernetes-ensure-stackdriver-monitoring-is-set-to-enabled-on-kubernetes-engine-clusters.sentinel"
   enforcement_level = "advisory"
}

policy "gcp-cis-7.3-kubernetes-ensure-legacy-authorization-is-set-to-disabled-on-kubernetes-engine-clusters" {
   source = "https://raw.githubusercontent.com/hashicorp/terraform-foundational-policies-library/master/cis/gcp/kubernetes/>gcp-cis-7.3-kubernetes-ensure-legacy-authorization-is-set-to-disabled-on-kubernetes-engine-clusters/gcp-cis-7.>3-kubernetes-ensure-legacy-authorization-is-set-to-disabled-on-kubernetes-engine-clusters.sentinel"
   enforcement_level = "advisory"
}

...

Policy Set Management

Now that the Policy Set is configured, it is time to enforce this configuration on a Terraform Cloud workspace. This is achieved by:

  1. Browsing to your Terraform Cloud organization settings

policy-sets-navigate-1

  1. Browse to Policy Sets settings

policy-sets-navigate-2

  1. Connect a new Policy Set

policy-sets-navigate-3

  1. Configure the Policy Settings (i.e. name, source, path, branch & workspace scope) and apply the settings

policy-sets-create

To test the configuration, navigate to the target workspace and queue a new plan. The policy check phase should now appear in the run details, and see the newly created policy will execute and return the state of the policy evaluation (i.e. Pass or Fail).

The image below shows the output of an example policy evaluation:

policy-sets-run


Policy Guides

back to top

Microsoft Azure


Useful Resources

back to top


About

A collection of Azure compute Sentinel policies

License:GNU General Public License v3.0


Languages

Language:HCL 100.0%