d_strobel.windows.adfs_application_group (1.4.0) — module

Add or modify application groups

Authors: Dustin Strobel (@d-strobel), Yasmin Hinel (@seasxlticecream)

Install collection

Install with ansible-galaxy collection install d_strobel.windows:==1.4.0


Add to requirements.yml

  collections:
    - name: d_strobel.windows
      version: 1.4.0

Description

Add or modify application groups for the Active Directory Federation Services.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Ensure application group is present
  d_strobel.windows_adfs.win_adfs_application_group:
    group_identifier: test_group
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Remove application group test_group
  d_strobel.windows_adfs.win_adfs_application_group:
    group_identifier: test_group
    state: absent
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Ensure application group is present with description and different name
  d_strobel.windows_adfs.win_adfs_application_group:
    group_identifier: test_group
    name: Test Group
    description: Managed by Ansible
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Ensure application is present but disabled
  d_strobel.windows_adfs.win_adfs_application_group:
    group_identifier: test_group
    state: disabled

Inputs

    
name:
    description:
    - The name of the application group.
    type: str

state:
    choices:
    - absent
    - present
    - disabled
    default: present
    description:
    - Set to C(present) to ensure the application group is present.
    - Set to C(absent) to ensure the application group is removed.
    - Set to C(disabled) to ensure the application group is present but disabled.
    type: str

description:
    description:
    - The description for the application group.
    type: str

group_identifier:
    description:
    - The identifier of the application group.
    required: true
    type: str