I'm using Jfryman puppet nginx module and I'm trying to enable status location with available vhosts , so my hiera go like this :
---
nginx::nginx_vhosts:
'default':
www_root: '/www/default'
listen_port: 8081
'default2':
www_root: '/www/default2'
listen_port: 8082
'default3':
www_root: '/www/default3'
listen_port: 8083
nginx::nginx_locations:
'status':
location: '/status'
vhost: 'default'...."here wanna include more than one vhost"
stub_status: true
is there anyway to say like this location included in these vhosts without duplicating the hiera entries ?