JASPHI
JASPHI

Reputation: 143

CloudFormation : How to refer to existing AWS Resources

What are the best ways to refer to Existing resources (Lambda, IAM Role, S3 bucket etc) when these are created manually from the console page?

Is it using Import Existing resources and copy Parameters Custom Resources or any other options

Thanks in advance

Upvotes: 3

Views: 6041

Answers (1)

Abdul Moeez
Abdul Moeez

Reputation: 1401

Yes, you can create a CloudFormation Stack from existing resources. As there are some following steps to do this thing.

  • Open the AWS CloudFormation console.
  • On the Stacks page, choose Create stack, and then choose With existing resources (import resources).
  • Read the Import overview page for a list of things you're required to provide during this operation.

For more and detailed help this AWS UserGuide and Blog's will help you achieve it easily.

Refer Existing Resources into a CloudFormation Stack

Creating a stack from existing resources

Upvotes: 5

Related Questions