Skip to content
This repository was archived by the owner on Jul 17, 2023. It is now read-only.

Commit 5f30460

Browse files
authored
tests: ansible 2.11 (#20)
1 parent 370ea7c commit 5f30460

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/sanity.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
schedule:
44
- cron: "5 12 * * *"
55
pull_request:
6-
6+
77
jobs:
88
sanity:
99
name: Sanity (${{ matrix.ansible }})
@@ -14,6 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
ansible:
17+
- stable-2.11
1718
- stable-2.10
1819
- stable-2.9
1920
- devel

plugins/modules/vultr_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ def main():
897897
firewall_group=dict(type='str'),
898898
startup_script=dict(type='str'),
899899
user_data=dict(type='str'),
900-
ssh_keys=dict(type='list', elements='str', aliases=['ssh_key']),
900+
ssh_keys=dict(type='list', elements='str', aliases=['ssh_key'], no_log=False),
901901
region=dict(type='str'),
902902
state=dict(choices=['present', 'absent', 'restarted', 'reinstalled', 'started', 'stopped'], default='present'),
903903
))

plugins/modules/vultr_server_baremetal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ def main():
524524
reserved_ip_v4=dict(type='str',),
525525
startup_script=dict(type='str',),
526526
user_data=dict(type='str',),
527-
ssh_keys=dict(type='list', elements='str', aliases=['ssh_key']),
527+
ssh_keys=dict(type='list', elements='str', aliases=['ssh_key'], no_log=False),
528528
region=dict(type='str',),
529529
state=dict(type='str', choices=['present', 'absent'], default='present'),
530530
))

plugins/modules/vultr_ssh_key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def main():
210210
argument_spec = vultr_argument_spec()
211211
argument_spec.update(dict(
212212
name=dict(type='str', required=True),
213-
ssh_key=dict(type='str',),
213+
ssh_key=dict(type='str', no_log=False),
214214
state=dict(type='str', choices=['present', 'absent'], default='present'),
215215
))
216216

0 commit comments

Comments
 (0)