Cloudformation Elasticache: "cannot be specified along with CacheSecurityGroupNames"

0

ERROR:

Properties [AZMode, CacheSubnetGroupName, SecurityGroupIds, PreferredAvailabilityZones, SnapshotArns, SnapshotRetentionLimit, SnapshotWindow, Tags] cannot be specified along with CacheSecurityGroupNames, please update your template to the latest version

Type: AWS::ElastiCache::CacheCluster
    Properties:
      Engine: redis
      AZMode: single-az
      EngineVersion: 5.0.6
      CacheParameterGroupName: !Ref CacheParameterGroup
      ClusterName: !Sub ${SystemName}-${Env}-elasticache
      CacheNodeType: !Ref ElasticacheNodeType
      NumCacheNodes: "1"
      Port: 6379
      PreferredMaintenanceWindow: !Ref MaintenanceWindow
      PreferredAvailabilityZone: ap-northeast-1a
      SnapshotRetentionLimit: !Ref SnapshotRetentionLimit
      SnapshotWindow: !Ref SnapshotWindow
      CacheSubnetGroupName: !Ref CacheSubnetGroup
      CacheSecurityGroupNames:
        - Fn::ImportValue: DevElasticacheSG

Whats the reason for above error in cloudformation?

1

1

CacheSecurityGroupNames can only be used when your cluster is not in VPC:

Use this parameter only when you are creating a cluster outside of an Amazon Virtual Private Cloud (Amazon VPC).

My guess is that maybe you wanted to use VpcSecurityGroupIds instead.

2021-11-24 03:50:39

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................