Skip to content
/ aws Public

Amazon Web Services, Inc. is a subsidiary of Amazon that provides on-demand cloud computing platforms and APIs to individuals, companies, and governments, on a metered, pay-as-you-go basis.

License

Notifications You must be signed in to change notification settings

xpdojo/aws

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWS

Troubleshooting

CloudFormation Stack - S3 Bucket 삭제 이슈

S3를 임의로 삭제할 경우 다음과 같은 에러가 발생할 수 있다.

fail: No bucket named 'cdk-demo-file-assets-bucket'
aws s3 ls

위 명령어를 통해 해당 버킷이 없는 걸 확인한다. CloudFormation에서 해당 버킷을 찾을 수 없기 때문에 에러가 발생한다. CDKToolkit, CdkDemoStack을 삭제하고 다시 생성하면 된다. 다음 명령을 실행한다.

# aws s3api create-bucket --bucket cdk-demo-file-assets-bucket --region ap-northeast-2
# cdk bootstrap aws://<account-id>/<region>

cdk bootstrap
#  ✅  Environment aws://<account-id>/<region> bootstrapped (no changes).
  • CloudFormation Stack을 삭제할 때 DELETE_IN_PROGRESS 상태에서 멈출 수도 있다.
  • CloudFormation Stack을 삭제할 때 [role_arn] is invalid or cannot be assumed 에러가 발생할 수 있다.
    • Docs
    • CloudFormation 서비스에 IAM 권한을 추가해야 한다.
    • 급하면 stack_name을 바꾸고 다시 생성한다.

About

Amazon Web Services, Inc. is a subsidiary of Amazon that provides on-demand cloud computing platforms and APIs to individuals, companies, and governments, on a metered, pay-as-you-go basis.

Topics

Resources

License

Stars

Watchers

Forks