Giter Site home page Giter Site logo

terraform-azure-policy's Introduction

Azure Policy

Usage

locals {

  policy_tags_rule = <<RULE
{
  "if": {
    "allOf": [
      {
        "field": "type",
        "equals": "Microsoft.Compute/virtualMachineScaleSets"
      },
      {
        "not": {
          "field": "[concat('tags[', parameters('tagName'), ']')]",
          "equals": "[parameters('tagValue')]"
        }
      }
    ]
  },
  "then": {
    "effect": "modify",
    "details": {
      "roleDefinitionIds": [
        "/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c"
      ],
      "operations": [
        {
          "operation": "addOrReplace",
          "field": "[concat('tags[', parameters('tagName'), ']')]",
          "value": "[parameters('tagValue')]"
        }
      ]
    }
  }
}
RULE

  policy_tags_parameters = <<PARAMETERS
{
  "tagName": {
    "type": "String",
    "metadata": {
      "displayName": "Tag Name",
      "description": "Name of the tag, such as 'environment'"
    }
  },
  "tagValue": {
    "type": "String",
    "metadata": {
      "displayName": "Tag Value",
      "description": "Value of the tag, such as 'production'"
    }
  }
}
PARAMETERS

  policy_assignments = {
    production = {
      display_name = "VMSS tags checking for my production subscription"
      description  = "VMSS tags checking for my production subscription"
      scope        = "/subscriptions/xxxxx",
      location     = module.azure_region.location
      parameters = jsonencode({
        environment = {
          value = "production"
        },
        managed_by = {
          value = "devops"
        }
      })
      identity_type = "SystemAssigned"
    },
    preproduction = {
      display_name = "VMSS tags checking for my preproduction subscription"
      description  = "VMSS tags checking for my preproduction subscription"
      scope        = "/subscriptions/xxxxx",
      location     = module.azure_region.location
      parameters = jsonencode({
        env = {
          value = "preproduction"
        },
        managed_by = {
          value = "devops"
        }
      })
      identity_type = "None"
    }
  }
}

module "policy_tags" {
  source  = "./policy"

  policy_display_name       = "VMSS tagging policy"

  policy_rule_content       = local.policy_tags_rule
  policy_parameters_content = local.policy_tags_parameters

  policy_assignments        = local.policy_assignments
}

Inputs

Name Description Type Default Required
policy_assignments Map with maps to configure assignments. Map key is the name of the assignment.
map(object({
display_name = string,
description = string,
scope = string,
parameters = string,
identity_type = string,
location = string,
}))
n/a yes
policy_description The description of the policy definition. string "" no
policy_display_name The display name of the policy definition. string n/a yes
policy_mgmt_group_name Create the Policy Definition at the Management Group level string null no
policy_mode The policy mode that allows you to specify which resource types will be evaluated. The value can be All, Indexed or NotSpecified. string "All" no
policy_name The name of the policy definition. Defaults generated from display name string "" no
policy_parameters_content Parameters for the policy definition. This field is a json object that allows you to parameterize your policy definition. string n/a yes
policy_rule_content The policy rule for the policy definition. This is a json object representing the rule that contains an if and a then block. string n/a yes

Outputs

Name Description
policy_assignment Azure policy assignments map
policy_definition_id Azure policy ID

terraform-azure-policy's People

Contributors

ankur51206 avatar gehlotanish avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.