diff --git a/README.md b/README.md index e6af002..780e355 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Role Variables | `rhsm_password` | `[undefined]` | Red Hat Portal password. | | `rhsm_activation_key` | `[undefined]` | Red Hat Portal Activation Key. | | `rhsm_org_id` | `[undefined]` | Red Hat Portal Organization Identifier. | +| `rhsm_pool_ids` | `[undefined]` | Red Hat Subscription pool IDs to consume. | | `rhsm_method` | `portal` | Set to `portal` or `satellite` depending on where you are registering. | | `rhsm_state` | `present` | Whether to enable or disable a Red Hat subscription. | | `rhsm_autosubscribe` | `yes` | Whether or not to autosubscribe to available repositories. | diff --git a/tasks/portal.yml b/tasks/portal.yml index 3175a02..5afa00f 100644 --- a/tasks/portal.yml +++ b/tasks/portal.yml @@ -4,6 +4,7 @@ password: "{{ rhsm_password | default(omit) }}" activationkey: "{{ rhsm_activation_key | default(omit) }}" org_id: "{{ rhsm_org_id | default(omit) }}" + pool_ids: "{{ rhsm_pool_ids | default(omit) }}" state: "{{ rhsm_state | default(omit) }}" autosubscribe: "{{ rhsm_autosubscribe | default(omit) }}" consumer_name: "{{ rhsm_consumer_hostname | default(omit) }}"