在 terraform 中向字符串添加单引号

发布于 2025-01-15 03:41:29 字数 655 浏览 1 评论 0原文

我需要在通过 Jenkins 执行的 terraform 代码中的字符串前面添加单引号。输出字符串没有连接单引号。

下面是我的代码

{ for m in v1 : "${m.type1}:${m.type2},${m.type3}" => format("%s,name=='%s'",m.type1,m.type3) }

我得到的输出是

    data1,name==John

我需要以下输出

    data1,name=='John'

当修改下面的代码时,

    { for m in v1 : "${m.type1}:${m.type2},${m.type3}" => format("%s,name=='\''%s'\''",m.type1,m.type3) }

我收到错误 Invalid escapeequence in Jenkins console ouput

**Error: Invalid escape sequence
The symbol "'" is not a valid escape sequence selector.**

I need to add a single quote in front of a string in terraform code that gets executed via Jenkins. The output string does not have the single quote concatenated.

Below is my code

{ for m in v1 : "${m.type1}:${m.type2},${m.type3}" => format("%s,name=='%s'",m.type1,m.type3) }

The output that I get is

    data1,name==John

I need the below output

    data1,name=='John'

When modifying the code as below

    { for m in v1 : "${m.type1}:${m.type2},${m.type3}" => format("%s,name=='\''%s'\''",m.type1,m.type3) }

I get the error Invalid escape sequence in Jenkins console ouput

**Error: Invalid escape sequence
The symbol "'" is not a valid escape sequence selector.**

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文