1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

fix: ensure returned resource ids are integers (#651)

##### SUMMARY

The documentation states that all our returned resource ids are
integers, this change aligns our modules with the docs.

The impact of this change should be minimal, as ids are used for
identification purposes by directly forwarding the values (no
transformation of the data is done).

##### ISSUE TYPE

- Bugfix Pull Request


##### COMPONENT NAME

All modules
This commit is contained in:
Jonas L. 2025-06-11 10:09:12 +02:00 committed by GitHub
parent ef6a9389dc
commit 579b34e754
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 36 additions and 34 deletions

View file

@ -132,7 +132,7 @@ class AnsibleHCloudImageInfo(AnsibleHCloud):
tmp.append(
{
"id": str(image.id),
"id": image.id,
"status": image.status,
"type": image.type,
"name": image.name,