Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove unnecessary use of
tr
in access-opensearch.md
I've noticed that tr is used to mitigate enclosing quotes (") from the result of `aws ssm get-parameter`. This might be destructive, because tr will remove *all* quotes, not only the enclosing ones and will not honor JSON escaped quotes. Check: `jq -cn '$ARGS.named' --arg test 'string_with"quotes"' | jq .test | tr -d '"'` vs `jq -cn '$ARGS.named' --arg test 'string_with"quotes"' | jq -r .test`
- Loading branch information