gpt4 book ai didi

amazon-web-services - 属性 SubnetIds 的值必须是字符串列表类型错误

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

我已经将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/

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