Lajpat
Lajpat

Reputation: 633

Create Elastic Beanstalk environment using existing resources

Since EB create resources with weird names it becomes difficult to monitor resources.

I want to create resources with proper names (eg autoscale config, elb etc) & make use of these resources to create EB environment.

Can I do this? If not then what is the best way to achieve sanity in handling so many weird named resources created by EB if i have multiple environments?

Upvotes: 0

Views: 156

Answers (1)

Jeff
Jeff

Reputation: 36553

Use CloudFormation directly. ElasticBeanstalk, under the hood, simply generates a CloudFormation template and deploys a stack.

By using the CloudFormation template directly, you can name resources as you see fit.

You can look under CloudFormation - Stacks to get a starting point by looking an exact stack template ElasticBeanstalk has already tried to deploy

Upvotes: 1

Related Questions