You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Breaking Changes / Porting Guide
droplets inventory plugin - the C(tags) attribute is now automatically renamed to C(do_tags) when included in the C(attributes) list to avoid conflicting with Ansible's reserved C(tags) variable. Users should update their inventory configurations to use C(do_tags) in C(keyed_groups), C(compose), and C(groups) sections (#249).
Bugfixes
droplet_action_resize - fixed to properly capture and poll the action response from the API instead of repeatedly querying the droplet state. The action response is now returned in the module output and used to determine when the resize operation completes (#243).
droplets inventory plugin - fixed warning "[WARNING]: Found variable using reserved name 'tags'" by automatically renaming the C(tags) attribute to C(do_tags) to avoid conflicting with Ansible's reserved variable name (#249).
ssh_key - module now handles the case where an SSH key with the same public key already exists on the account, making it idempotent instead of failing with a 422 error (#102).
tag - fixed KeyError when tag creation fails due to validation errors. The module now properly catches and reports API error messages instead of showing a cryptic KeyError (#181).