Re: [ansible-project] Subdirectories in host_vars

2019-09-12 Thread Dick Visser
Yup. I tend to use rolename/vars for things that are rather static. For instance, a dict of software versions and their checksums, which will never change. On Thu, 12 Sep 2019 at 01:24, Peter Kokot wrote: > > Thank you so much for your answer. > > Yes, it works correctly as expected. Issue was

Re: [ansible-project] Subdirectories in host_vars

2019-09-11 Thread Peter Kokot
Thank you so much for your answer. Yes, it works correctly as expected. Issue was that I was overriding the variables from the roles incorrectly (roles/something/vars/main.yaml) and should use the roles/something/defaults/main.yaml for that. The host_vars work as expected. On Thursday, 12

Re: [ansible-project] Subdirectories in host_vars

2019-09-11 Thread Dick Visser
Yes. On Thu, 12 Sep 2019 at 00:11, Peter Kokot wrote: > > Hello, > > does host_vars directory support subdirectories? So multiple variables can be > organized in multiple YAML files inside the host subdirectory. For example: > > ├─ host_vars/ > ├─── hostname_1.tld/ > ├─ secrets.yaml >

[ansible-project] Subdirectories in host_vars

2019-09-11 Thread Peter Kokot
Hello, does host_vars directory support subdirectories? So multiple variables can be organized in multiple YAML files inside the host subdirectory. For example: ├─ host_vars/ ├─── hostname_1.tld/ ├─ secrets.yaml ├─ variables.yaml ├─── hostname_2.tld/ ├─ secrets.yaml ├─