arg_spec adjustments: modules [t-z]* (#10513)
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.16) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.11) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.6) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run

* arg_spec adjustments: modules [t-z]*

* add changelog frag
This commit is contained in:
Alexei Znamensky 2025-08-01 20:56:00 +12:00 committed by GitHub
commit 3b551f92fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 161 additions and 143 deletions

View file

@ -255,18 +255,18 @@ def manage_issue(taiga_host, project_name, issue_subject, issue_priority,
def main():
module = AnsibleModule(
argument_spec=dict(
taiga_host=dict(type='str', required=False, default="https://api.taiga.io"),
taiga_host=dict(type='str', default="https://api.taiga.io"),
project=dict(type='str', required=True),
subject=dict(type='str', required=True),
issue_type=dict(type='str', required=True),
priority=dict(type='str', required=False, default="Normal"),
status=dict(type='str', required=False, default="New"),
severity=dict(type='str', required=False, default="Normal"),
description=dict(type='str', required=False, default=""),
attachment=dict(type='path', required=False, default=None),
attachment_description=dict(type='str', required=False, default=""),
tags=dict(required=False, default=[], type='list', elements='str'),
state=dict(type='str', required=False, choices=['present', 'absent'], default='present'),
priority=dict(type='str', default="Normal"),
status=dict(type='str', default="New"),
severity=dict(type='str', default="Normal"),
description=dict(type='str', default=""),
attachment=dict(type='path'),
attachment_description=dict(type='str', default=""),
tags=dict(default=[], type='list', elements='str'),
state=dict(type='str', choices=['present', 'absent'], default='present'),
),
supports_check_mode=True
)