Hi,
Is it possible to use a group_vars/ directory alongside inventory directories (as opposed to files)?
Take this simplified example, which has an inventory file (staging) and an inventory directory (production):
`
$ tree
.
└── inventories
├── group_vars
│ └── all.yml
├── production
│ └── hosts
└── staging
`
staging and production/hosts both contain a single host:
`
[localhost]
127.0.0.1
`
group_vars/all.yml defines a variable example_var:
`