1
0
Fork 0
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:
Andrew Klychkov 2021-03-26 08:11:04 +01:00
parent 9f653cb030
commit 6f324a8228
2 changed files with 2 additions and 2 deletions

View file

@ -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"],

View file

@ -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"},