We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
user: name: ray password: !secret U&n78asdn9sdf8/a=321470
yq .user.password file.yml correctly returns just the value without the tag U&n78asdn9sdf8/a=321470
yq .user.password file.yml
U&n78asdn9sdf8/a=321470
How can I found out what tags belong to .user.password e.g.; yq '.user.password | tags' file.yml would return secret or !secret?
.user.password
yq '.user.password | tags' file.yml
secret
!secret
Or I would like to get all values with a specific tag yq '.. | tag("secret")
yq '.. | tag("secret")
TIA
The text was updated successfully, but these errors were encountered:
This is not currently supported.
Sorry, something went wrong.
No branches or pull requests
Example:
yq .user.password file.yml
correctly returns just the value without the tagU&n78asdn9sdf8/a=321470
How can I found out what tags belong to
.user.password
e.g.;yq '.user.password | tags' file.yml
would returnsecret
or!secret
?Or I would like to get all values with a specific tag
yq '.. | tag("secret")
TIA
The text was updated successfully, but these errors were encountered: