ansible-collection-hetzner-.../changelogs
Jonas L 6581ed50db
feat: add hetzner.hcloud.all action group (#396)
##### SUMMARY

This allows to use `module_defaults` against all the modules at once
using the new `hetzner.hcloud.all` `action_group`.

You can now pass the `api_token` argument using module_defaults:

```yaml
- name: Demonstrate the usage of the 'hetzner.hcloud.all' module_defaults group
  hosts: localhost
  connection: local

  module_defaults:
    group/hetzner.hcloud.all:
      api_token: "{{ _vault_hcloud_api_token }}"

  tasks:
    - name: Create a volume
      hetzner.hcloud.volume:
        name: my-volume
        location: fsn1
        size: 100
        state: present
      register: volume
```   

See the documentation and examples for more details.

##### ISSUE TYPE

- Feature Pull Request
2023-11-23 14:16:05 +01:00
..
fragments feat: add hetzner.hcloud.all action group (#396) 2023-11-23 14:16:05 +01:00
.gitignore Polish old modules and collection for release (#11) 2020-06-29 13:53:01 +02:00
changelog.yaml chore(main): release 2.3.0 (#382) 2023-11-07 12:59:43 +01:00
config.yaml refactor: prefer true/false over yes/no (#226) 2023-06-21 10:49:54 +02:00
dev-changelog.md chore(main): release 2.3.0 (#382) 2023-11-07 12:59:43 +01:00