Landing Zone Accelerator - TSE

0

I am trying to deploy TSE-SE on the latest version of LZA 1.6.1.

I am getting the following error on the final 'Deploy' stage, on 'Security_Resources'

Resource handler returned message: "Resource of type 'AWS::Logs::LogGroup' with identifier '{"/properties/LogGroupName":"AWSAccelerator-sessionmanager-logs"}' already exists." (RequestToken: xxxxxx-xxxxxx-xxxx-xxxxx-xxxxxxxxx, HandlerErrorCode: AlreadyExists)

(Token values have been blanked out above)

I have removed the stack and the loggroup and reattempted the stage, still failing.

any ideas?

Thanks

2개 답변
1

Thanks for the reply!

This still didn't work. When the TSE-SE is deploying on the 'deploy' stage, it fails saying it doesn't exist but builds it few seconds later.

Then when you re-run the pipeline it says its already there.

I'm leaning towards a bug in the new 1.6.1 version of LZA.

Jg1011
답변함 3달 전
  • same issue here. once you delete the log in some cases it is automatically created in the meantime and you get the same error. looks like a bug

1

To resolve the Resource of type 'AWS::Logs::LogGroup' with identifier 'xxxxx' already exists error when working with AWS resources like CloudFormation, follow these condensed steps:

  1. Use the AWS Management Console, CLI, or SDKs to check if the LogGroup already exists. For CLI, run:
    aws logs describe-log-groups --log-group-name-prefix "your-log-group-name"
    
  2. If the existing LogGroup is no longer required, carefully delete it to avoid data loss, using:
    aws logs delete-log-group --log-group-name "your-log-group-name"
    
  3. After deletions, attempt your operation again.

Resources:

profile picture
전문가
답변함 3달 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠