-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CDK Refactoring Tools #162
Comments
Are you familiar with |
Transferring this to the RFC repo as this requires further discussion. |
Yes, but this only works at L1 level, so if I have a high level construct which I move around, it becomes more complicated. Perhaps you have a pattern in mind for this? |
It also seems like a big ask to have to drop down to |
Any updates here? It seems untenable to not allow folks to refactor CDK code after the first deployment without causing breakages. |
I think the better solution is to allow remapping construct paths at any point in the tree. As long as that's a hierarchical operation we should be fine. |
I use this https://gist.github.com/foriequal0/f1f4ea279fb64836e5fb38efefa133d7 while waiting for a feature that rename logical id in a stack |
I have just refactored a DynamoDB Table from a Stack into its own Construct within the Stack. My colleagues and I have already deployed copies of the Stack before this change into our respective AWS Accounts. How do I ensure the refactor I've just checked in will cleanly deploy, without my colleagues and I all having to jump through hoops, rename things, mess with the cdk.context.json, etc.? It would be great if CDK had a solution for such a refactor. |
I really like how this is handled in pulumi via aliasing. |
Would CDK context be an appropriate tool to help here? I'm thinking if we had a method like |
I think this is pretty big gap in aws-cdk functionality that really hinders the cdk's main goal of allowing composability and higher level logic for creating cloud infrastructure. The lack of built-in support for refactoring without resource recreation implicitly influences developers to create giant flat stacks of resources to ensure logicalId stability, which ends up just looking like CFN templates. A tighter integration with CloudFormation resource import functionality could probably close the gap - @foriequal0 may be onto something with their comment here: aws/aws-cdk#4733 (comment) But until the cdk addresses it, this will always be a sharp edge. One possible workaround is to add an optional logicalId override value in the props of your reusable constructs. This will allow consumers of the construct to pin the logicalId if they desire, or omit it if they'd rather have the cdk automatically generate it. With the current state of things I'd actually recommend that for stateful named resources such as DynamoDb tables, s3 buckets, etc. users should always provide a logicalId override from the get-go, in order to allow for later refactors without replacement of the underlying resource. Otherwise you'll eventually end up with a bunch of random A dummy example: // alarmed-table.ts - a reusable construct that spins up a table and an alarm monitoring its usage
import { Construct } from "constructs";
import { aws_dynamodb as dynamodb, aws_cloudwatch as cloudwatch } from "aws-cdk-lib";
export interface MyAlarmedTableProps {
tableName: string;
tableLogicalId?: string;
}
export class MyAlarmedTable extends Construct {
readonly table: dynamodb.Table;
readonly usageAlarm: cloudwatch.Alarm;
constructor(scope: Construct, id: string, props: MyAlarmedTableProps) {
super(scope, id);
this.table = new dynamodb.Table(this, 'Table', {
tableName: props.tableName,
billingMode: BillingMode.PAY_PER_REQUEST,
});
if (props.tableLogicalId) {
(this.table.node.defaultChild as CfnTable).overrideLogicalId(props.tableLogicalId);
}
this.alarm = new cloudwatch.Alarm(this, 'UsageAlarm', {
// metric for throttled requests, latency, or something
});
}
} and its usage: // stack.ts
import { Stack, StackProps } from "aws-cdk-lib";
import { MyAlarmedTable } from "./alarmed-table";
class MyStack extends Stack {
constructor(scope: App, id: string, props: StackProps) {
super(scope, id, props);
new MyAlarmedTable(this, 'UnitOrdersTable', {
tableName: `UnitOrders-${props.env.region}`,
tableLogicalId: "UnitOrdersDDB",
});
}
} With this approach, no matter where you refactor and move that UnitOrdersTable resource within the CDK app, it will always refer to the same logical resource. |
Does anyone have any recent advice on how to deal with this? I've taken great care not to use physical names, but sometimes you just can't avoid it. For example, if you're working with cognito resources like a user pool identity provider or api gateway custom domain names where CDK requires a I've played with As an aside, dropping to L1s for every stateful construct is a bit of a pain but can be easily circumvented. If you're not using CDK in a static setting, this sharp edge can be dangerous in production for stateful resources, especially if you're using it in to deploy infra for customers. Would love to hear if there's advice on this. Thanks in advance! See #455, aws/aws-cdk#22016 and aws/aws-cdk#1424, aws/aws-cdk#4733 |
For now, here is how I'm dealing with this (in Python). First, create a small wrapper to make def override_logical_id(resource: Resource | CfnResource, logical_id: str) -> None:
if isinstance(resource, Resource):
cfn_resource = cast(CfnResource, resource.node.default_child)
cfn_resource.override_logical_id(logical_id)
else:
resource.override_logical_id(logical_id) Then for each resource where I need to retain state (cognito, S3, etc) and I only want to delete/update/recreate resources if I explicitly change the Id myself, I do the following: override_logical_id(cognito_user_pool, "CognitoUserPool") Ofc, the downside here is that if I make an update to the resource in CDK, it won't get deployed. FWIW I know this can easily be done in a more global way w/ aspects, but for now, I'd like to keep this as stupid simple as possible. Can someone please validate this approach and let me know of any 'gotchas' I may be missing? Does this also mean I can now name these resources without fear of naming conflicts and stack rollbacks? This is for new deployments only, not existing deployments. Thank you. |
For anyone who finds this, answering my own question here. Yes, this will work. And no, in my limited experience overriding logicalIds, this does not mean you can now name these resources without fear of naming conflicts and stack rollbacks. If you override the
Unclear why, but that's what I'm seeing. |
Apologies in advance for the length of this post. More discovery from the front lines: Api Gateway resources need to be handled with extreme care. See below for details. Before diving into specifics, for anyone reading this, this sharp edge in CDK is extremely sharp. How sharp? This sharp: In all seriousness, to the hardworking CDK engineers — you are appreciated. Nonetheless, the issue of unintended side effects while changing seemingly minor things in CDK really needs to be addressed and rectified. For example, while changing an
Did I know things may be affected downstream? Yes, of course. But I was under the false assumption that I had locked all After discussing with AWS Support, the following resources need to be locked in Api Gateway even if you are not defining them:
In our case, we were not defining A separate albeit related issue is that some of the Api Gateway methods cannot be passed an the For reference, here's the relevant info from the docs for
All of that being said, we're now freezing as many
Which just looks silly. I know this issue has been open ~4 years, there have been myriad github issues created, and according to AWS support, dozens of internal support tickets created by customers about this. My hope is that the CDK team can dedicate time to finding / picking a solution to this problem as some seemingly viable options (IMO) have been offered. But, not doing anything more than making it possible to rename Imagine if after CDK v1 was released, large parts of the codebase could never be changed? I hope the intent of this post is clear — let's find a solution to this problem. It's not to point fingers or be ungrateful. I know how hard the CDK org has worked. NOTE: if any of the above is incorrect, please let me know. Happy to edit this post as needed. |
At the moment, when I move constructs around in CDK, this results in logical IDs changing and resources being replaced during deployment, even stateful ones. This causes major pain, especially if it's a production service.
I would like CDK to offer a simpler way of refactoring code without having to worry about resource replacement.
Use Case
Refactoring code is a natural part of development, including CDK development. I don't want to have to worry about breaking production due to moving constructs around.
Proposed Solution
Option 1) Work with CloudFormation team to support resource logical ID renaming without replacement (maybe use CDK metadata as a key to identify that it's the same resource)
Option 2) Make it easier to hardcode logical IDs in CDK. At the moment it only works via L1 resources, but most constructs we deal with are not L1, therefore it becomes painful to manually set logical IDs. Perhaps Construct could expose a method to hardcode prefix for logical IDs
Other
This is a 🚀 Feature Request
The text was updated successfully, but these errors were encountered: