gpt4 book ai didi

amazon-web-services - 模板属性无效 [ElasticacheCluster]

转载 作者:行者123 更新时间:2023-12-03 07:23:30 25 4
gpt4 key购买 nike

我收到标题中提到的错误,但我不知道如何修复它。错误出现在 ElasticacheCluster 部分。我尝试以多种方式修改它,这就是为什么有一些带注释的代码行,但我没有删除,也许它们可能有助于故障排除。这是我的代码如下:

    #### Creating Elasticache ####

ElasticacheSecurityGroup:
Type: 'AWS::EC2::SecurityGroup'
Properties:
GroupDescription: Elasticache Security Group
VpcId: !Ref PubPrivateVPC
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: '11211'
ToPort: '11211'
CidrIp: 0.0.0.0/0
Tags:
-
Key: "Name"
Value: !Join [_, [!Ref 'AWS::StackName',ElasiCache-SG]]
# SourceSecurityGroupName: !Ref InstanceSecurityGroup

CacheSubnetGroup:
Type: 'AWS::ElastiCache::SubnetGroup'
Properties:
Description: cache
SubnetIds:
- !Ref PrivateSubnet1
- !Ref PrivateSubnet2
- !Ref PrivateSubnet3

ElasticacheCluster:
Type: AWS::ElastiCache::CacheCluster
Properties:
Engine: memcached
EngineVersion: 1.6.6
CacheNodeType: cache.t2.micro
CacheSubnetGroupName: !Ref CacheSubnetGroup
NumCacheNodes: '1'
# VpcId: !Ref PubPrivateVPC
VpcSecurityGroupIds: !Ref ElasticacheSecurityGroup
# - !GetAtt
# - ElasticacheSecurityGroup
# - GroupId

最佳答案

您的集群资源未缩进。

这应该有效:

  ElasticacheSecurityGroup:
Type: 'AWS::EC2::SecurityGroup'
Properties:
GroupDescription: Elasticache Security Group
VpcId: !Ref PubPrivateVPC
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: '11211'
ToPort: '11211'
CidrIp: 0.0.0.0/0
Tags:
-
Key: "Name"
Value: !Join [_, [!Ref 'AWS::StackName',ElasiCache-SG]]
# SourceSecurityGroupName: !Ref InstanceSecurityGroup

CacheSubnetGroup:
Type: 'AWS::ElastiCache::SubnetGroup'
Properties:
Description: cache
SubnetIds:
- !Ref PrivateSubnet1
- !Ref PrivateSubnet2
- !Ref PrivateSubnet3

ElasticacheCluster:
Type: AWS::ElastiCache::CacheCluster
Properties:
Engine: memcached
EngineVersion: 1.6.6
CacheNodeType: cache.t2.micro
CacheSubnetGroupName: !Ref CacheSubnetGroup
NumCacheNodes: '1'
# VpcId: !Ref PubPrivateVPC
VpcSecurityGroupIds:
- !Ref ElasticacheSecurityGroup
# - !GetAtt
# - ElasticacheSecurityGroup
# - GroupId

关于amazon-web-services - 模板属性无效 [ElasticacheCluster],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67589395/

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