Hi, sorry for the dumb question. How do you run multiple commands with with_exec ? I understand that it takes the first element in the sequence as the command and every other elements are arguments for that same command, so using something like this won't work
with_exec(["aws", "sts", "get-caller-identity", "|", "jq" "'.Arn'"])
Did I understand the use of with_exec wrong ?