However, the API client doesn't seem to have support for the new attribute yet. At the moment, the lack of support breaks the upcloud_firewall.py Ansible module you guys have made, since it wants to check the existing firewall rules via the API first.
A quick fix I found was to add a new "comment": None attribute to the attributes hash in upcloud_api/firewall.py. Obviously that doesn't qualify as support, but at least you can use the Ansible modules without errors.
It seems that Upcloud's API now has a new "comment" attribute for firewall rules:
However, the API client doesn't seem to have support for the new attribute yet. At the moment, the lack of support breaks the upcloud_firewall.py Ansible module you guys have made, since it wants to check the existing firewall rules via the API first.
A quick fix I found was to add a new
"comment": None
attribute to theattributes
hash in upcloud_api/firewall.py. Obviously that doesn't qualify as support, but at least you can use the Ansible modules without errors.