|
123456789101112131415161718192021222324252627282930 |
- # Using keyed groups and compose for hostvars
- plugin: community.digitalocean.digitalocean
- api_token: "{{ lookup('ansible.builtin.env', 'DO_API_TOKEN') }}"
- attributes:
- - id
- - name
- - memory
- - vcpus
- - disk
- - size
- - image
- - networks
- - volume_ids
- - tags
- - region
- keyed_groups:
- - key: do_region.slug
- prefix: 'region'
- separator: '_'
- - key: do_tags | lower
- prefix: ''
- separator: ''
- compose:
- ansible_host: do_networks.v4 | selectattr('type','eq','public')
- | map(attribute='ip_address') | first
- class: do_size.description | lower
- distro: do_image.distribution | lower
- filters:
- - '"kubernetes" in do_tags'
- - 'do_region.slug == "fra1"'
|