Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ steps {
skippedTags(String tags)
startAtTask(String task)
credentialsId(String id)
vaultCredentialsId(String id)
become(boolean become = true)
becomeUser(String user = 'root')
sudo(boolean sudo = true)
sudoUser(String user = 'root')
forks(int forks = 5)
unbufferedOutput(boolean unbufferedOutput = true)
colorizedOutput(boolean colorizedOutput = false)
hostKeyChecking(boolean hostKeyChecking = false)
disableHostKeyChecking(boolean disableHostKeyChecking = false)
additionalParameters(String params)
extraVars {
extraVar(String key, String value, boolean hidden)
Expand All @@ -50,6 +51,7 @@ steps {
inventoryPath(String path)
inventoryContent(String content, boolean dynamic = false)
credentialsId(String id)
vaultCredentialsId(String id)
hostPattern(String pattern)
become(boolean become = true)
becomeUser(String user = 'root')
Expand All @@ -58,12 +60,22 @@ steps {
forks(int forks = 5)
unbufferedOutput(boolean unbufferedOutput = true)
colorizedOutput(boolean colorizedOutput = false)
hostKeyChecking(boolean hostKeyChecking = false)
disableHostKeyChecking(boolean disableHostKeyChecking = false)
additionalParameters(String params)
extraVars {
extraVar(String key, String value, boolean hidden)
}
}

ansibleVault {
ansibleName(String name)
action(String action)
vaultCredentialsId(String id)
newVaultCredentialsId(String id)
content(String content)
input(String input)
output(String output)
}
}
```

Expand Down