gpt4 book ai didi

amazon-web-services - 如何在无服务器 yaml 配置中转义 $ 登录?

转载 作者:行者123 更新时间:2023-12-03 17:05:24 24 4
gpt4 key购买 nike

我想在使用 stage variables 时转义 $ 符号用于 api 网关。

当我尝试部署时出现以下错误。

Invalid variable reference syntax for variable stageVariables.capabilitySecurityUrl. You can only reference env vars, options, & files. You can check our docs for more info.



我尝试了以下选项,但不起作用

1) 不加引号使用
URI:https://${stageVariables.capabilitySecurityUrl}

2) 使用引号
URI:“https://${stageVariables.capabilitySecurityUrl}”

3) 从文件访问变量
./stageVariables.json
{
"capabilitySecurityUrl":"https://${stageVariables.capabilitySecurityUrl}"
}

./serverless.yml
${file(./stageVariables.json):capabilitySecurityUrl}

有什么帮助吗?

最佳答案

正如作者所说,自定义 variableSyntax 对我有用:

  # notice the double quotes for yaml to ignore the escape characters!
# Use this for allowing CloudFormation Pseudo-Parameters in your serverless.yml
# e.g. ${stageVariables.my_var}. All other Serverless variables work as usual.
variableSyntax: "\\${((?!stageVariables)[ ~:a-zA-Z0-9._@'\",\\-\\/\\(\\)]+?)}"
https://www.serverless.com/framework/docs/providers/aws/guide/variables/#using-custom-variable-syntax

关于amazon-web-services - 如何在无服务器 yaml 配置中转义 $ 登录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43765040/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com