@@ -31,14 +31,15 @@ steps {
31
31
skippedTags(String tags)
32
32
startAtTask(String task)
33
33
credentialsId(String id)
34
+ vaultCredentialsId(String id)
34
35
become(boolean become = true)
35
36
becomeUser(String user = 'root')
36
37
sudo(boolean sudo = true)
37
38
sudoUser(String user = 'root')
38
39
forks(int forks = 5)
39
40
unbufferedOutput(boolean unbufferedOutput = true)
40
41
colorizedOutput(boolean colorizedOutput = false)
41
- hostKeyChecking (boolean hostKeyChecking = false)
42
+ disableHostKeyChecking (boolean disableHostKeyChecking = false)
42
43
additionalParameters(String params)
43
44
extraVars {
44
45
extraVar(String key, String value, boolean hidden)
@@ -50,6 +51,7 @@ steps {
50
51
inventoryPath(String path)
51
52
inventoryContent(String content, boolean dynamic = false)
52
53
credentialsId(String id)
54
+ vaultCredentialsId(String id)
53
55
hostPattern(String pattern)
54
56
become(boolean become = true)
55
57
becomeUser(String user = 'root')
@@ -58,12 +60,22 @@ steps {
58
60
forks(int forks = 5)
59
61
unbufferedOutput(boolean unbufferedOutput = true)
60
62
colorizedOutput(boolean colorizedOutput = false)
61
- hostKeyChecking (boolean hostKeyChecking = false)
63
+ disableHostKeyChecking (boolean disableHostKeyChecking = false)
62
64
additionalParameters(String params)
63
65
extraVars {
64
66
extraVar(String key, String value, boolean hidden)
65
67
}
66
68
}
69
+
70
+ ansibleVault {
71
+ ansibleName(String name)
72
+ action(String action)
73
+ vaultCredentialsId(String id)
74
+ newVaultCredentialsId(String id)
75
+ content(String content)
76
+ input(String input)
77
+ output(String output)
78
+ }
67
79
}
68
80
```
69
81
0 commit comments