Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.

Latest commit

 

History

History
29 lines (23 loc) · 764 Bytes

File metadata and controls

29 lines (23 loc) · 764 Bytes

dci_job_component module

DCI module to interact with the components of a job

Options

Parameter Required Default Description
component_id True the component id
dci_cs_url False DCI Control Server URL
dci_login False User's DCI login
dci_password False User's DCI password
job_id True the job id
state False present Desired state of the resource

Examples

- name: Associate a component to a job
  dci_job_component:
    job_id: {{ job_id }}
    component_id: {{ component_id }}

- name: Remove a component from a job
  dci_job_component:
    job_id: {{ job_id }}
    component_id: {{ component_id }}
    state: absent