0

私の雲のテンプレートで、ElastiCacheクラスタのポリシーを作成しています。これは複数の領域で利用可能に設定されています。 AWSドキュメント複数の領域にあるElastiCacheクラスタにARNを指定する

http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-elasticache

から

私は、以下のクラスタ・地域名をスキップしています、これはこれを行う方法です。

"ElastiCachePolicy" :{ 

     "Type" : "AWS::IAM::Policy", 
     "Properties" : { 
      "PolicyName" : "ElastiCache", 
      "PolicyDocument" : { 
      "Version": "2012-10-17", 
      "Statement": [ 
      { 
      "Action": "elasticache:*", 
      "Effect": "Allow", 
      "Resource": "arn:aws:elasticache::account-id:cluster:cluster-name" 
      }] 
      }, 
      "Roles": [ { "Ref": "SomeRole" }] 
     } 
    } 

答えて

0

私は空き領域がある領域を指定するのは混乱しています。クラスターの空き領域に関係なくregion-idを指定する必要がありました。

関連する問題