Commit Graph

1 Commits (f23a74f41ed541c9bb3f8933491b12a5938ee80a)

Author SHA1 Message Date
Dag Wieers 6d31a7cdbf New module 'set_fact' to define host facts
This module allows you to set host facts (or export play variables to the playbook scope if you fancy that).

The module also accepts complex arguments.

```yaml
 - action: set_fact fact="something" global_fact="${local_var}"'
 - action: set_fact
   args:
      fact: something
      global_fact: ${local_var}
```
12 years ago