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
This probably needs to be answered by
[@John Smyth](https://steampipe.slack.com/team/U020A5R2CD6)
and/or
[@Mike Burgess](https://steampipe.slack.com/team/U01UJL9SDMH)
.
I'm trying to construct an URL for the href of a column in a table.
If scheme is http:// and link is [nhmanagers.org](http://nhmanagers.org/) then this:
href = "${local.host}/dashboard.test?input={{ .'scheme'}} {{.'link'}}"
Yields the link http://localhost:9194/dashboard.test?input=http://%20nhmanagers.org/, which doesn't work because of the space in the middle.
But this:
href = "${local.host}/dashboard.test?input={{ .'scheme'}}{{.'link'}}"
Yields the link http://localhost:9194/dashboard.test?input=http://{{.%27link%27}}
Should that just work? Or should I be combining both .'scheme' and '.link' into a single jq expression somehow (haven't found a way)?
The text was updated successfully, but these errors were encountered:
As reported by Jon Udell @ https://steampipe.slack.com/archives/C01UECB59A7/p1668550634256029.
The text was updated successfully, but these errors were encountered: