aboutsummaryrefslogtreecommitdiff
path: root/roles/ssh_keys/tests/test.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/ssh_keys/tests/test.yml')
-rw-r--r--roles/ssh_keys/tests/test.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/ssh_keys/tests/test.yml b/roles/ssh_keys/tests/test.yml
new file mode 100644
index 0000000..3397909
--- /dev/null
+++ b/roles/ssh_keys/tests/test.yml
@@ -0,0 +1,13 @@
+---
+- name: Test ssh_keys
+ hosts: test
+ remote_user: root
+ roles:
+ - ssh_keys
+ vars:
+# ssh_key_strings:
+# - { user: 'jdoe', string: 'a public key here' }
+# - { user: 'alice', string: 'public key here' }
+# ssh_key_files:
+# - { user: 'jdoe', file: '../../../company/pubkeys/jdoe.pubkeys' }
+# - { user: 'alice', file: '../../../company/pubkeys/alice.pubkey' }
bgstack15