[ansible-project] Variable namespacing

2017-06-27 Thread Josh Smift
BM> When wanting to namespace variables in a role, is it typical to use a BM> hash, or a prefix? Is there a best practice for this? There are pros and cons either way. Off the top of my head, using a hash lets you iterate over it easily, and IMHO looks nicer; but you can't (as far as I know) add e

[ansible-project] Variable namespacing

2017-06-26 Thread Ben Mildren
When wanting to namespace variables in a role, is it typical to use a hash, or a prefix? Is there a best practice for this? e.g. role_name_var_one: 1 role_name_var_two: 2 role_name_var_three: 3 or role_name: var_one: 1 var_two: 2 var_three: 3 -- You received this message because you a