Salt-ssh support
diff --git a/tests/pillar/control_virt.sls b/tests/pillar/control_virt.sls
index e07319b..e84c5dd 100644
--- a/tests/pillar/control_virt.sls
+++ b/tests/pillar/control_virt.sls
@@ -31,4 +31,4 @@
ubuntu2:
provider: node02.domain.com
image: bubuntu.qcomw
- size: small
\ No newline at end of file
+ size: small
diff --git a/tests/pillar/master_ssh_minion_key.sls b/tests/pillar/master_ssh_minion_key.sls
new file mode 100644
index 0000000..92ead37
--- /dev/null
+++ b/tests/pillar/master_ssh_minion_key.sls
@@ -0,0 +1,10 @@
+salt:
+ master:
+ enabled: true
+ ssh_minion:
+ node01:
+ host: 10.0.0.1
+ user: saltssh
+ sudo: true
+ key_file: /path/to/the/key
+ port: 22
diff --git a/tests/pillar/master_ssh_minion_password.sls b/tests/pillar/master_ssh_minion_password.sls
new file mode 100644
index 0000000..e3c9c82
--- /dev/null
+++ b/tests/pillar/master_ssh_minion_password.sls
@@ -0,0 +1,10 @@
+salt:
+ master:
+ enabled: true
+ ssh_minion:
+ node01:
+ host: 10.0.0.1
+ user: saltssh
+ sudo: true
+ password: password
+ port: 22
diff --git a/tests/pillar/master_ssh_minion_root.sls b/tests/pillar/master_ssh_minion_root.sls
new file mode 100644
index 0000000..2e72678
--- /dev/null
+++ b/tests/pillar/master_ssh_minion_root.sls
@@ -0,0 +1,9 @@
+salt:
+ master:
+ enabled: true
+ ssh_minion:
+ node01:
+ host: 10.0.0.1
+ user: root
+ password: password
+ port: 22