Creating multiple S3 Buckets using AWS Cli
If you want to create multiple buckets in AWS than it can be created using the AWS Cli specifying the bucket name and the region the bucket should be created.
Create a text file specifying the list of the buckets name which are required to be created. For e.g
We are going to create the buckets in the Singapore region , you need to change the region name if you want to create it in some other region
Create a text file specifying the list of the buckets name which are required to be created. For e.g
cd /tmp
vi bucketlist.txt
We are going to create the buckets in the Singapore region , you need to change the region name if you want to create it in some other region
for i in `cat bucketlist.txt`;do aws s3api create-bucket --bucket $i --create-bucket-configuration LocationConstraint=ap-southeast-1 ; done
Comments
Post a Comment