aspdeepak
aspdeepak

Reputation: 2781

Reattaching a retained cloudformation resources, back to a cloudformation stack

We are retaining some of the cloudformation resources for safety reasons.

This is achieved using DeletionPolicy: Retain

Is there any way to reattach those retained resources to a new/existing stack?

Upvotes: 3

Views: 242

Answers (1)

franklinsijo
franklinsijo

Reputation: 18290

Yes, you can create a new cloudformation stack or update an existing stack with resources that are not managed by Cloudformation. This is done using Resource Import.

Here is the list of such resources that can be imported: Resources that support Import operation.

Upvotes: 2

Related Questions