gpt4 book ai didi

amazon-web-services - AWS::ElastiCache::CacheCluster 与 AWS::ElastiCache::ReplicationGroup

转载 作者:IT王子 更新时间:2023-10-29 06:09:34 24 4
gpt4 key购买 nike

我之前使用它通过 cloudformation 成功启动了一个 redis 实例:

        "RedisCache": {
"Type": "AWS::ElastiCache::CacheCluster",
"Properties": {
"ClusterName": {
"Fn::Join": ["-", [ {
"Ref": "EnvType"
}, {
"Ref": "EnvVersion"
}
]]
},
"AutoMinorVersionUpgrade": "true",
"AZMode": "single-az",
"CacheNodeType": "cache.t2.medium",
"Engine": "redis",
"EngineVersion": "3.2.6",
"NumCacheNodes": "1",
"PreferredAvailabilityZone": "us-west-2a",
"PreferredMaintenanceWindow": "sun:04:30-sun:05:30",
"CacheSubnetGroupName": "redis-test-subnet-group",
"VpcSecurityGroupIds": ["sg-group1", "sg-group2"]
}
},

AS AWS 最近升级了 Redis 以使用 AtRestEncryptionAuthTokenTransitEncryption 我尝试在上面的代码中包含这些内容,但按照 this只有 AWS::ElastiCache::ReplicationGroup 接受这些参数。

如何使用 AWS::ElastiCache::ReplicationGroup 创建单个 Redis 实例?

最佳答案

根据文档,您需要创建ReplicationGroup而不是CacheCluster,并将NumNodeGroups设置为1,将AutomaticFailoverEnabled设置为false。这两个值都是默认值,因此您可以省略它们。API Documentation有关单个节点的参数值的更多详细信息。

关于amazon-web-services - AWS::ElastiCache::CacheCluster 与 AWS::ElastiCache::ReplicationGroup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47431460/

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