mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Cloudscale server password (#53701)
* cloudscale_server: remove required parameter check The valid parameter combinations are already checked by the API. There is no need to check a subset of this in the Ansible module as well. This makes it more likely that future changes in the API won't require changes in the Ansible module. * cloudscale_server: add password parameter Recent revisions of the cloudscale.ch API allow setting a password for a server. Add this option to the cloudscale_server module.
This commit is contained in:
committed by
René Moser
parent
a8eb25ac14
commit
8111425a96
@@ -0,0 +1,6 @@
|
||||
---
|
||||
# Password to use for test server
|
||||
# This has to be set as a fact, otherwise a new password will be generated
|
||||
# on every variable access.
|
||||
- set_fact:
|
||||
cloudscale_test_password: "{{ lookup('password', '/dev/null length=15 chars=ascii_letters') }}"
|
||||
Reference in New Issue
Block a user