blob: 07b0764a627277d604555e1a595c79a196f9792f (
plain)
1
2
3
4
5
6
7
8
|
We can pass variables to the ansible upon invoking it using `--extra-vars` or `-e`.
```
--extra-vars "blaat=piet henk=joop"
--extra-vars '{"blaat":"piet","henk":"joop"}'
--extra-vars "@file.json"
--extra-vars "@file.yml"
```
|