azure.entraid-organization

EntraID Organization resource for tenant-level settings.

Provides access to organization-level configuration.

Permissions: See Graph API Permissions Reference section.

Available filters: value, security-defaults

example:

Check if security defaults are disabled:

policies:
  - name: security-defaults-check
    resource: azure.entraid-organization
    filters:
      - type: security-defaults
        enabled: false

Check if password lockout threshold exceeds 10 attempts:

policies:
  - name: lockout-threshold-compliance
    resource: azure.entraid-organization
    filters:
      - type: password-lockout-threshold
        max_threshold: 10

Filters

advisor-recommendation

Filter resources by Azure Advisor Recommendations

Select all categories with ‘all’

example:

policies:
  - name: disks-with-cost-recommendations
    resource: azure.disk
    filters:
      - type: advisor-recommendation
        category: Cost
        key: '[].properties.recommendationTypeId'
        op: contains
        value: '48eda464-1485-4dcf-a674-d0905df5054a'
properties:
  category:
    type: string
  default:
    type: object
  key:
    type: string
  op:
    enum:
    - eq
    - equal
    - ne
    - not-equal
    - gt
    - greater-than
    - ge
    - gte
    - le
    - lte
    - lt
    - less-than
    - glob
    - regex
    - regex-case
    - in
    - ni
    - not-in
    - contains
    - difference
    - intersect
    - mod
  type:
    enum:
    - advisor-recommendation
  value:
    oneOf:
    - type: array
    - type: string
    - type: boolean
    - type: number
    - type: 'null'
  value_from:
    additionalProperties: 'False'
    properties:
      expr:
        oneOf:
        - type: integer
        - type: string
      format:
        enum:
        - csv
        - json
        - txt
        - csv2dict
      headers:
        patternProperties:
          ? ''
          : type: string
        type: object
      query:
        type: string
      url:
        type: string
    required:
    - url
    type: object
  value_path:
    type: string
  value_regex:
    type: string
  value_type:
    enum:
    - age
    - integer
    - expiration
    - normalize
    - size
    - cidr
    - cidr_size
    - swap
    - resource_count
    - expr
    - unique_size
    - date
    - version
    - float
required:
- category
- type

password-lockout-threshold

Filter based on password lockout threshold configuration.

Checks the account lockout threshold setting from Directory Settings. Requires Microsoft Graph beta API and Directory.Read.All permission.

example:

Find organizations where lockout threshold is greater than 10:

policies:
  - name: lockout-threshold-too-high
    resource: azure.entraid-organization
    filters:
      - type: password-lockout-threshold
        max_threshold: 10
properties:
  max_threshold:
    type: integer
  type:
    enum:
    - password-lockout-threshold
required:
- type

security-defaults

Filter based on security defaults configuration.

example:

Find organizations with security defaults disabled:

policies:
  - name: security-defaults-disabled
    resource: azure.entraid-organization
    filters:
      - type: security-defaults
        enabled: false
properties:
  enabled:
    type: boolean
  type:
    enum:
    - security-defaults
required:
- type

Actions