Skip to content

Commit

Permalink
Adding ansible vault job dsl documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
KASSAMANY Yamen authored and KASSAMANY Yamen committed Apr 19, 2018
1 parent e4fea8f commit 4d06970
Showing 1 changed file with 14 additions and 2 deletions.
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

0 comments on commit 4d06970

Please sign in to comment.