【发布时间】:2021-12-30 07:08:06
【问题描述】:
我有一个 CommaDelimitedList,需要将它作为 JSONArray 放入策略 JSON 属性中:
Parameters:
ApiAllowedIps:
Type: CommaDelimitedList
RestApi:
Type: AWS::ApiGateway::RestApi
Properties:
...
Policy: !Sub |
{
...
"Condition": {
"NotIpAddress": {
"aws:SourceIp": [${ApiAllowedIps}]
}
}
}
我尝试了很多组合,但都没有成功。
【问题讨论】:
标签: amazon-web-services amazon-cloudformation