issues
search
awsdocs
/
aws-cdk-guide
User guide for the AWS Cloud Development Kit (CDK).
Other
335
stars
222
forks
source link
Combine Resources and Identifiers topic and describe implications of various identifiers
#346
Open
ghost
opened
3 years ago
ghost
commented
3 years ago
Logical IDs are based on construct IDs and the tree
Changing logical ID means replacement (so refactoring implies replacement)
Physical names impede replacement and can get you stuck so don't use them, Use autogenerated names instead and pass the result around
If you get stuck, use stack.renameLogicalId
Cover how to override logical IDs