mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
hcloud_certificate, hcloud_server: define no_log values for private_key and ssh_keys parameters
This commit is contained in:
parent
9f653cb030
commit
6f324a8228
2 changed files with 2 additions and 2 deletions
|
|
@ -232,7 +232,7 @@ class AnsibleHcloudCertificate(Hcloud):
|
|||
id={"type": "int"},
|
||||
name={"type": "str"},
|
||||
certificate={"type": "str"},
|
||||
private_key={"type": "str"},
|
||||
private_key={"type": "str", "no_log": True},
|
||||
labels={"type": "dict"},
|
||||
state={
|
||||
"choices": ["absent", "present"],
|
||||
|
|
|
|||
|
|
@ -563,7 +563,7 @@ class AnsibleHcloudServer(Hcloud):
|
|||
location={"type": "str"},
|
||||
datacenter={"type": "str"},
|
||||
user_data={"type": "str"},
|
||||
ssh_keys={"type": "list", "elements": "str"},
|
||||
ssh_keys={"type": "list", "elements": "str", "no_log": False},
|
||||
volumes={"type": "list", "elements": "str"},
|
||||
firewalls={"type": "list", "elements": "str"},
|
||||
labels={"type": "dict"},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue