Resource handler returned message: "<resourceName> already exists

0

I am trying to create a s3 bucket using CFT but its giving error as Resource handler returned message: "testbucket123 already exists

I have verified there is no such active bucket.

Thank you in advance!!

feita há 4 meses631 visualizações
2 Respostas
1

Hello.

An S3 bucket cannot be created unless it has a public and unique bucket name.
Therefore, if a user with another AWS account is creating an S3 bucket with the same name, you will not be able to create it.
Try creating it with a different S3 bucket name.
https://repost.aws/knowledge-center/s3-error-bucket-already-exists

These error messages indicate that another AWS account owns a bucket with the same name. If you get any of these errors, then you must use a different bucket name to create the bucket.

If you get the Bucket name is already owned by you or BucketAlreadyOwnedByYou error, then check your account for a bucket with the same name. These errors indicate that your account already uses the bucket name. You can use the Amazon S3 console to review existing buckets. Or, you can run the head-bucket AWS CLI command to confirm that you already have a bucket with that name.

profile picture
ESPECIALISTA
respondido há 4 meses
profile pictureAWS
ESPECIALISTA
avaliado há 4 meses
1

Moreover, you may need to either randomise bucket name creation:

BucketWithSemiRandomName:
  Type: "AWS::S3::Bucket"
  Properties:
    BucketName: !Join
      - "-"
      - - "bucket-with-semi-random-name"
        - !Select
          - 0
          - !Split
            - "-"
            - !Select
              - 2
              - !Split
                - "/"
                - !Ref "AWS::StackId"

Or just hardcode/parametrize the bucket name with a global name, so that next time you run the IaC it won’t try to recreate it. You can do this by setting the retain property and use the import command: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-existing-stack.html

profile picture
ESPECIALISTA
respondido há 4 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas