How to declare multi region access point in cloudformation template

0

I want to add a multi region access point policy to my cloudformation template and I am getting a syntax error as undefined resource when running the cloudformation template Template error: instance of Fn::GetAtt references undefined resource m67ckh1qr8zan.mrap Can someone help me with the correct format of declaring and using a multi region access point by a cloudformation template. Thanks.

  • Could you please edit your question and add a code snippet showing a part of your CloudFormation template where you define the resource and reference it? Without looking at the template, it is hard to tell what exactly might cause the error. Thank you!

1개 답변
1

Hi,

Hope this template helps. Pre-requisite is to have at least two buckets in different regions created already so as to reference those bucket names in the CF template

{
    "AWSTemplateFormatVersion": "2010-09-09",
    "Resources": {
        "MyMRAP": {
          "Type" : "AWS::S3::MultiRegionAccessPoint",
          "Properties" : {
            "PublicAccessBlockConfiguration" : {
              "BlockPublicAcls" : "True",
              "BlockPublicPolicy" : "True",
              "IgnorePublicAcls" : "True",
              "RestrictPublicBuckets" : "True"
            },
            "Regions" : [ {"Bucket":"bucket1"}, {"Bucket": "bucket2"} ]
        }
      }
    }
}

Replace the bucket1/bucket2 in above code with the actual bucket names. I was able to successfully create Multi region Access point with the above code

--Syd

profile picture
Syd
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠