community.general.redhat_subscription (8.5.0) — module

Manage registration and subscriptions to RHSM using C(subscription-manager)

Authors: Barnaby Court (@barnabycourt)

Install collection

Install with ansible-galaxy collection install community.general:==8.5.0


Add to requirements.yml

  collections:
    - name: community.general
      version: 8.5.0

Description

Manage registration and subscription to the Red Hat Subscription Management entitlement platform using the C(subscription-manager) command, registering using D-Bus if possible.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Register as user (joe_user) with password (somepass) and auto-subscribe to available content.
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    auto_attach: true
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Same as above but subscribe to a specific pool by ID.
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    pool_ids: 0123456789abcdef0123456789abcdef
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Register and subscribe to multiple pools.
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    pool_ids:
      - 0123456789abcdef0123456789abcdef
      - 1123456789abcdef0123456789abcdef
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Same as above but consume multiple entitlements.
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    pool_ids:
      - 0123456789abcdef0123456789abcdef: 2
      - 1123456789abcdef0123456789abcdef: 4
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Register and pull existing system data.
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    consumer_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Register with activationkey and consume subscriptions matching Red Hat Enterprise Server or Red Hat Virtualization
  community.general.redhat_subscription:
    state: present
    activationkey: 1-222333444
    org_id: 222333444
    pool: '^(Red Hat Enterprise Server|Red Hat Virtualization)$'
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Update the consumed subscriptions from the previous example (remove Red Hat Virtualization subscription)
  community.general.redhat_subscription:
    state: present
    activationkey: 1-222333444
    org_id: 222333444
    pool: '^Red Hat Enterprise Server$'
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Register as user credentials into given environment (against Red Hat Satellite or Katello), and auto-subscribe.
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    environment: Library
    auto_attach: true
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Register as user (joe_user) with password (somepass) and a specific release
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    release: 7.4
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Register as user (joe_user) with password (somepass), set syspurpose attributes and synchronize them with server
  community.general.redhat_subscription:
    state: present
    username: joe_user
    password: somepass
    auto_attach: true
    syspurpose:
      usage: "Production"
      role: "Red Hat Enterprise Server"
      service_level_agreement: "Premium"
      addons:
        - addon1
        - addon2
      sync: true

Inputs

    
pool:
    default: ^$
    description:
    - 'Specify a subscription pool name to consume.  Regular expressions accepted.

      Mutually exclusive with O(pool_ids).

      '
    - 'Please use O(pool_ids) instead: specifying pool IDs is much faster,

      and it avoids to match new pools that become available for the

      system and are not explicitly wanted.  Also, this option does not

      support quantities.

      '
    - 'This option is deprecated for the reasons mentioned above,

      and it will be removed in community.general 10.0.0.

      '
    type: str

state:
    choices:
    - present
    - absent
    default: present
    description:
    - whether to register and subscribe (V(present)), or unregister (V(absent)) a system
    type: str

token:
    description:
    - sso.redhat.com API access token.
    type: str
    version_added: 6.3.0
    version_added_collection: community.general

org_id:
    description:
    - Organization ID to use in conjunction with activationkey
    type: str

release:
    description:
    - Set a release version
    type: str

password:
    description:
    - access.redhat.com or Red Hat Satellite or Katello password
    type: str

pool_ids:
    default: []
    description:
    - 'Specify subscription pool IDs to consume. Prefer over O(pool) when possible as
      it is much faster.

      A pool ID may be specified as a C(string) - just the pool ID (for example V(0123456789abcdef0123456789abcdef)),

      or as a C(dict) with the pool ID as the key, and a quantity as the value (for example

      V(0123456789abcdef0123456789abcdef: 2). If the quantity is provided, it is used
      to consume multiple

      entitlements from a pool (the pool must support this). Mutually exclusive with O(pool).

      '
    elements: raw
    type: list

username:
    description:
    - access.redhat.com or Red Hat Satellite or Katello username
    type: str

syspurpose:
    description:
    - Set syspurpose attributes in file C(/etc/rhsm/syspurpose/syspurpose.json) and synchronize
      these attributes with RHSM server. Syspurpose attributes help attach the most appropriate
      subscriptions to the system automatically. When C(syspurpose.json) file already
      contains some attributes, then new attributes overwrite existing attributes. When
      some attribute is not listed in the new list of attributes, the existing attribute
      will be removed from C(syspurpose.json) file. Unknown attributes are ignored.
    suboptions:
      addons:
        description: Syspurpose attribute addons
        elements: str
        type: list
      role:
        description: Syspurpose attribute role
        type: str
      service_level_agreement:
        description: Syspurpose attribute service_level_agreement
        type: str
      sync:
        default: false
        description:
        - When this option is V(true), then syspurpose attributes are synchronized with
          RHSM server immediately. When this option is V(false), then syspurpose attributes
          will be synchronized with RHSM server by rhsmcertd daemon.
        type: bool
      usage:
        description: Syspurpose attribute usage
        type: str
    type: dict

auto_attach:
    aliases:
    - autosubscribe
    description:
    - Upon successful registration, auto-consume available subscriptions
    - 'Please note that the alias O(autosubscribe) will be removed in

      community.general 9.0.0.

      '
    type: bool

consumer_id:
    description:
    - 'References an existing consumer ID to resume using a previous registration

      for this system. If the  system''s identity certificate is lost or corrupted,

      this option allows it to resume using its previous identity and subscriptions.

      The default is to not specify a consumer ID so a new ID is created.

      '
    type: str

environment:
    description:
    - Register with a specific environment in the destination org. Used with Red Hat Satellite
      or Katello
    type: str

server_port:
    description:
    - Specify the port when registering to the Red Hat Subscription Management or Red
      Hat Satellite or Katello server.
    type: str
    version_added: 3.3.0
    version_added_collection: community.general

rhsm_baseurl:
    description:
    - Specify CDN baseurl
    type: str

activationkey:
    description:
    - supply an activation key for use with registration
    type: str

consumer_name:
    description:
    - Name of the system to register, defaults to the hostname
    type: str

consumer_type:
    description:
    - The type of unit to register, defaults to system
    type: str

server_prefix:
    description:
    - Specify the prefix when registering to the Red Hat Subscription Management or Red
      Hat Satellite or Katello server.
    type: str
    version_added: 3.3.0
    version_added_collection: community.general

force_register:
    default: false
    description:
    - Register the system even if it is already registered
    type: bool

server_hostname:
    description:
    - Specify an alternative Red Hat Subscription Management or Red Hat Satellite or Katello
      server.
    type: str

server_insecure:
    description:
    - Enable or disable https server certificate verification when connecting to O(server_hostname).
    type: str

rhsm_repo_ca_cert:
    description:
    - Specify an alternative location for a CA certificate for CDN
    type: str

server_proxy_port:
    description:
    - Specify an HTTP proxy port.
    type: str

server_proxy_user:
    description:
    - Specify a user for HTTP proxy with basic authentication
    type: str

server_proxy_scheme:
    description:
    - Specify an HTTP proxy scheme, for example V(http) or V(https).
    type: str
    version_added: 6.2.0
    version_added_collection: community.general

server_proxy_hostname:
    description:
    - Specify an HTTP proxy hostname.
    type: str

server_proxy_password:
    description:
    - Specify a password for HTTP proxy with basic authentication
    type: str

Outputs

subscribed_pool_ids:
  description: List of pool IDs to which system is now subscribed
  returned: success
  sample:
    8a85f9815ab905d3015ab928c7005de4: '1'
  type: dict