AWS Cloud Rendering Template - Setting an Area in an S3 Bucket

I am trying to create an s3 bucket in a specific region (us-west-2). This is not like using cloud data patterns. Any ideas? I did not manage to explicitly call it using the service-hash-region agreement that I read about.

 Template:
 {
     "AWSTemplateFormatVersion": "2010-09-09",
     "Resources": {
       "S3Bucket": {
         "Type": "AWS::S3::Bucket",
         "Properties": {
           "AccessControl": "PublicReadWrite",
         }
       }
     },
     "Outputs": {
       "BucketName": {
         "Value": {
           "Ref": "S3Bucket"
         },
         "Description": "Name of the sample Amazon S3 bucket with a lifecycle configuration."
       }
     }
   }
+4
source share
1 answer

if you want to create an s3 bucket in a specific region, you need to run the cloud JSon template from that area.

URL- cloudFormation (https://aws.amazon.com/cloudformation/faqs/?nc1=h_ls#regions http://docs.aws.amazon.com/general/latest/gr/rande.html#cfn_region), .

, aws , -,

1 , , s3.

, ReplicationConfiguration properties

+3

Source: https://habr.com/ru/post/1655153/


All Articles