Note
This plugin is part of the community.general collection.
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.taiga_issue
.
The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments |
---|---|---|
attachment string | Path to a file to be attached to the issue. | |
attachment_description string | Default: "" | A string describing the file to be attached to the issue. |
description string | Default: "" | The issue description. |
issue_type string / required | The issue type. Must exist previously. | |
priority string | Default: "Normal" | The issue priority. Must exist previously. |
project string / required | Name of the project containing the issue. Must exist previously. | |
severity string | Default: "Normal" | The issue severity. Must exist previously. |
state string |
| Whether the issue should be present or not. |
status string | Default: "New" | The issue status. Must exist previously. |
subject string / required | The issue subject. | |
tags string | Default: [] | A lists of tags to be assigned to the issue. |
taiga_host string | Default: "https://api.taiga.io" | The hostname of the Taiga instance. |
Note
- name: Create an issue in the my hosted Taiga environment and attach an error log community.general.taiga_issue: taiga_host: https://mytaigahost.example.com project: myproject subject: An error has been found issue_type: Bug priority: High status: New severity: Important description: An error has been found. Please check the attached error log for details. attachment: /path/to/error.log attachment_description: Error log file tags: - Error - Needs manual check state: present - name: Deletes the previously created issue community.general.taiga_issue: taiga_host: https://mytaigahost.example.com project: myproject subject: An error has been found issue_type: Bug state: absent
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/general/taiga_issue_module.html