Fix salt-ssh, fix version
diff --git a/tests/pillar/master_ssh_minion_key.sls b/tests/pillar/master_ssh_minion_key.sls
index 09e007e..86d328e 100644
--- a/tests/pillar/master_ssh_minion_key.sls
+++ b/tests/pillar/master_ssh_minion_key.sls
@@ -16,10 +16,11 @@
environment:
prd:
formula: {}
- ssh_minion:
- node01:
- host: 10.0.0.1
- user: saltssh
- sudo: true
- key_file: /path/to/the/key
- port: 22
+ 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
index 2883f4d..fcb0cd5 100644
--- a/tests/pillar/master_ssh_minion_password.sls
+++ b/tests/pillar/master_ssh_minion_password.sls
@@ -16,10 +16,11 @@
environment:
prd:
formula: {}
- ssh_minion:
- node01:
- host: 10.0.0.1
- user: saltssh
- sudo: true
- password: password
- port: 22
+ 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
index b076fbc..e12681f 100644
--- a/tests/pillar/master_ssh_minion_root.sls
+++ b/tests/pillar/master_ssh_minion_root.sls
@@ -16,9 +16,10 @@
environment:
prd:
formula: {}
- ssh_minion:
- node01:
- host: 10.0.0.1
- user: root
- password: password
- port: 22
+ ssh:
+ minion:
+ node01:
+ host: 10.0.0.1
+ user: root
+ password: password
+ port: 22