From 317532f8bdb3d642e9d579821543bb1e74df2637 Mon Sep 17 00:00:00 2001 From: Andrew Kiselev Date: Fri, 29 May 2020 09:51:07 -0400 Subject: [PATCH] packet_device - add tags parameter (#418) --- .../418-add-tags-parameter-to-packet-device.yaml | 2 ++ plugins/modules/cloud/packet/packet_device.py | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 changelogs/fragments/418-add-tags-parameter-to-packet-device.yaml diff --git a/changelogs/fragments/418-add-tags-parameter-to-packet-device.yaml b/changelogs/fragments/418-add-tags-parameter-to-packet-device.yaml new file mode 100644 index 0000000000..58857c3ee7 --- /dev/null +++ b/changelogs/fragments/418-add-tags-parameter-to-packet-device.yaml @@ -0,0 +1,2 @@ +minor_changes: +- packet_device - add ``tags`` parameter on device creation (https://github.com/ansible-collections/community.general/pull/418) \ No newline at end of file diff --git a/plugins/modules/cloud/packet/packet_device.py b/plugins/modules/cloud/packet/packet_device.py index 8b0fa952c1..e97d92b4c5 100644 --- a/plugins/modules/cloud/packet/packet_device.py +++ b/plugins/modules/cloud/packet/packet_device.py @@ -46,6 +46,13 @@ options: description: - List of device IDs on which to operate. + tags: + description: + - List of device tags. + - Currently implemented only for device creation. + type: list + elements: str + facility: description: - Facility slug for device creation. See Packet API for current list - U(https://www.packet.net/developers/api/facilities/). @@ -137,6 +144,7 @@ EXAMPLES = ''' - packet_device: project_id: 89b497ee-5afc-420a-8fb5-56984898f4df hostnames: myserver + tags: ci-xyz operating_system: ubuntu_16_04 plan: baremetal_0 facility: sjc1 @@ -432,6 +440,7 @@ def create_single_device(module, packet_conn, hostname): % param) project_id = module.params.get('project_id') plan = module.params.get('plan') + tags = module.params.get('tags') user_data = module.params.get('user_data') facility = module.params.get('facility') operating_system = module.params.get('operating_system') @@ -446,6 +455,7 @@ def create_single_device(module, packet_conn, hostname): device = packet_conn.create_device( project_id=project_id, hostname=hostname, + tags=tags, plan=plan, facility=facility, operating_system=operating_system, @@ -594,6 +604,7 @@ def main(): facility=dict(), features=dict(type='dict'), hostnames=dict(type='list', aliases=['name']), + tags=dict(type='list', elements='str'), locked=dict(type='bool', default=False, aliases=['lock']), operating_system=dict(), plan=dict(),