Home > OS >  Why does my AWS dashboard shows 2 buckets while I have just 1 application? Is it due to CodePipeline
Why does my AWS dashboard shows 2 buckets while I have just 1 application? Is it due to CodePipeline

Time:11-12

I am quite a noob in AWS services. Since last year, I have been successfully keeping a personal blog (static website) using S3 which is called: enter image description here

The fact that two buckets are shown while having one application intrigues. I was expecting to see just one bucket.

1 - Is this due to the CodePipeLine integration? If no, why does it happen?

2 - Is one of these buckets removable?

3 - In order to provide the SSL certificate, which one should I choose?

Thanks!

CodePudding user response:

You need both buckets. For Code Pipeline you need a S3 bucket where the artifacts are sent for deployment (that is the first bucket on your screen shot). The second bucket in your screen shot looks like the bucekt that holds your web site. You do not want to have just one S3 bucket because you will end up with your deployment file from Code Pipeline in your public web site bucket. Choose the second bucket that have the same name as your domain name for your SSL certificate.

  • Related