19 lines
635 B
YAML
19 lines
635 B
YAML
---
|
|
- name: Promote content view version
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
vars:
|
|
organization: Default Organization
|
|
lifecycle_environment: undef
|
|
current_lifecycle_environment: undef
|
|
content_view: undef
|
|
|
|
tasks:
|
|
- name: Promote Content View # noqa: args[module] - required parameters provided with environment vars
|
|
redhat.satellite.content_view_version:
|
|
content_view: "{{ content_view }}"
|
|
organization: "{{ organization }}"
|
|
lifecycle_environments: "{{ lifecycle_environment }}"
|
|
current_lifecycle_environment: "{{ current_lifecycle_environment }}"
|