You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yaml can contain custom tags in the form of '!vault' and such. Before
this commit, this would cause Yaml to be unable to read the entire yaml
file.
This commit introduces a custom yaml loader that implements the
SafeLoader class and overrides what happens when tags are encountered.
For `vault` tags, it returns an 'ENCRYPTED CONTENTS REDACTED' string.
For all other (unknown) tags, it returns the tag value as a string.
This should also fix "Skipping encrypted file'-like warnings when
generating CMDBs.
0 commit comments