Given a pillar top.sls
file like this:
base:
'*':
- base
- local
and a base.sls
file like this:
mysetting: 'foo'
Is there anything you can put in local.sls
which will cause mysetting
to be undefined again?
Given a pillar top.sls
file like this:
base:
'*':
- base
- local
and a base.sls
file like this:
mysetting: 'foo'
Is there anything you can put in local.sls
which will cause mysetting
to be undefined again?
The short answer is Probably. See the http://docs.saltstack.com/en/latest/topics/pillar/#pillar-namespace-flattened for more details.
In your particular case having
mysetting: 'boo'
will definitely override! the setting.
I haven't tried it myself but I'm next to confident that the following would set the mysseting
to undefined.
mysetting: None