:source: role.py :orphan: .. _role_module: role -- Manage Roles ++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Create, update, and delete Roles Requirements ------------ The below requirements are needed on the host that executes this module. - apypie Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
description
string
Description of the role
filters
list / elements=dictionary
Filters with permissions for this role
permissions
list / elements=string / required
List of permissions
search
string
Filter condition for the resources
locations
list / elements=string
List of locations the entity should be assigned to
name
string / required
The name of the role
organizations
list / elements=string
List of organizations the entity should be assigned to
password
string / required
Password of the user accessing the Foreman server
server_url
string / required
URL of the Foreman server
state
string
    Choices:
  • present ←
  • absent
State of the entity
username
string / required
Username accessing the Foreman server
validate_certs
boolean
    Choices:
  • no
  • yes ←
Whether or not to verify the TLS certificates of the Foreman server

Examples -------- .. code-block:: yaml+jinja - name: role role: name: "Provisioner" description: "Only provision on libvirt" locations: - "Uppsala" organizations: - "ACME" filters: - permissions: - view_hosts search: "owner_type = Usergroup and owner_id = 4" server_url: "https://foreman.example.com" username: "admin" password: "secret" state: present Status ------ Authors ~~~~~~~ - Christoffer Reijer (@ephracis) Basalt AB .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.