azRole

Use the resource azRole to deploy an Azure role to the relevant tenant.

Attributes

Attribute Type Mandatory Values Default Notes
Name String Yes
Description String No
Action Array No

Input by YAML

Object model for YAML deployment:

azRole:
    # Mandatory
  - Name: 'TestRole1'
    # Optional
    Description: 'my test role'
    Action: [array]

Input by JSON

Object model for JSON deployment:

{
  "azRole": [
    {
      "Name": "string",
      "Description": "string",
      "Member": [array]
    }
  ]
}