diff --git a/plugins/modules/hcloud_image_info.py b/plugins/modules/hcloud_image_info.py index 8acd884..c1603d2 100644 --- a/plugins/modules/hcloud_image_info.py +++ b/plugins/modules/hcloud_image_info.py @@ -154,6 +154,7 @@ class AnsibleHcloudImageInfo(Hcloud): self.module.params.get("architecture") )] elif self.module.params.get("name") is not None: + self.module.warn("This module only returns x86 images by default. Please set architecture:x86|arm to hide this message.") self.hcloud_image_info = [self.client.images.get_by_name( self.module.params.get("name") )]