Skip to content

Instantly share code, notes, and snippets.

@subuk
Created April 20, 2017 09:23
Show Gist options
  • Select an option

  • Save subuk/b1424e83a38eab39f10b1a517ab902c3 to your computer and use it in GitHub Desktop.

Select an option

Save subuk/b1424e83a38eab39f10b1a517ab902c3 to your computer and use it in GitHub Desktop.
- hosts: localhost
gather_facts: no
vars:
jira_tasks:
- summary: Test task
description: ""
tasks:
- name: Create an issue
jira:
uri: 'https://jira.example.com'
username: '{{ user }}'
password: '{{ pass }}'
project: PROJ
operation: create
summary: '{{ item.summary }}'
description: '{{ item.description }}'
issuetype: Task
fields:
customfield_10006: 'PROJ-459' # Epic link
with_items: '{{ jira_tasks }}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment