- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经将subnetIds作为列表传递,但仍然收到错误:
VpcEndpointSubnetIds:
Type: "List<AWS::EC2::Subnet::Id>"
Description: Select the subnet to associate with the VPC endpoint
Default: 'subnet-039c1ac2c0925fe94,subnet-0e9267fe210b042da'
VPCEndpointGateway:
Type: AWS::EC2::VPCEndpoint
Properties:
VpcId: !Ref VpcId
ServiceName: !Ref dynamoDbEndPointServiceName
VpcEndpointType: Gateway
PrivateDnsEnabled: true
SubnetIds:
-
!Ref VpcEndpointSubnetIds
SecurityGroupIds:
-
!Ref cacheSecurityGroup
不确定是什么导致了错误?我错过了什么吗?
更新:修复间距问题后,现在出现错误:
Value of property {/SubnetIds/0} does not match type {String}
最佳答案
这看起来像是模板格式问题。
此外,SubnetIds
属性仅受接口(interface) 和网关负载均衡器 VPC 终端节点类型支持。对于 Gateway 类型,您无法使用此属性,因此您需要将其删除:
VPCEndpointGateway:
Type: AWS::EC2::VPCEndpoint
Properties:
VpcId: !Ref VpcId
ServiceName: !Ref dynamoDbEndPointServiceName
VpcEndpointType: Gateway
PrivateDnsEnabled: true
SecurityGroupIds:
- !Ref cacheSecurityGroup
有关更多信息,请查看 AWS::EC2::VPCEndpoint文档
关于amazon-web-services - 属性 SubnetIds 的值必须是字符串列表类型错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70785907/
我已经将subnetIds作为列表传递,但仍然收到错误: VpcEndpointSubnetIds: Type: "List" Description: Select the su
我有一个 AWS CodePipeline,可以使用 YAML 模板以及模板配置 JSON 文件在 CloudFormation 中部署堆栈。 相关模板片段: AWSTemplateFormatVer
我正在绑定(bind)此 cloudformation 堆栈,但当创建到达 DBSubnetGroup 时,它失败并显示消息:属性 SubnetIds 的值必须是字符串列表类型。我感谢您的帮助。除了
当我运行 create-stack 时,创建 elasticsearch 域失败并出现此错误 - “属性 SubnetIds 的值必须是字符串列表类型”这是 CF 模板的片段... Parameter
当我运行 create-stack 时,创建 elasticsearch 域失败并出现此错误 - “属性 SubnetIds 的值必须是字符串列表类型”这是 CF 模板的片段... Parameter
如何在 YAML cloudformation 模板中指定子网 ID(从现有子网或我创建的子网)? 我不断收到堆栈错误,它需要是字符串或以下内容。 2022-04-18 19:56:17 UTC+10
我正在使用 aws-cli 在多个环境中部署我的堆栈,并且需要参数化我的堆栈可用的子网/安全组。 我的 SAM 模板中有一个部分定义子网和安全组,如下所示: EnvSubnets: Des
我是一名优秀的程序员,十分优秀!