I would like a variable in my paramters.yml file to be empty, that is
value:
I am using hash2yaml to convert my hiera file into the config parameters.yml file, and I can't find a solution to get the final variable to be an empty string. I have tried the following:
**hiera:**
value:
**result:**
value: undef
**hiera:**
value: null
**result:**
value: undef
**hiera:**
value: nil
**result:**
value: nil
**hiera:**
value: ''
**result:**
value: ''
Any help would be greatly appreciated.
↧