Gather information about Equinix Metal operating_systems
Version added: 1.4.0
- Gather information about Equinix Metal operating_systems.
- API is documented at https://metal.equinix.com/developers/api/operating_systems/.
The below requirements are needed on the host that executes this module.
- packet-python >= 1.43.1
# All the examples assume that you have your Equinix Metal API token in env var METAL_API_TOKEN.
# You can also pass it to the api_token parameter of the module instead.
- name: Gather information about all operating_systems
hosts: localhost
tasks:
- equinix.metal.operating_system_info:
- name: Gather information about a particular operating_system using slug
hosts: localhost
tasks:
- equinix.metal.operating_system_info:
slugs:
- ubuntu_20_10
Common return values are documented here, the following are the fields unique to this module:
- Jason DeTiberus (@detiber) <[email protected]>