Is it possible to customise the name of s3 auto delete custom resource currently I find the below {prefix}-custom-s3-auto-delete-objects-custom-resource-provider-{suffix} generated

0

Is it possible to customise the name of s3 auto delete custom resource currently I find the below {prefix}-custom-s3-auto-delete-objects-custom-resource-provider-{suffix} generated I am having 2 stacks in the same environment and the prefix and suffix are same for both hence I am getting an error like the specific resource already exists in another stack while i deploy in cdk v2

1回答
0

Aravind,

Unfortunately, I have not found a straightforward way to customize the name of those types of resources. However, since the {prefix} and {suffix} you're seeing are likely derived from the logical ID of the resource in your CDK application (auto-generated hash to ensure uniqueness), you should be able to work around the issue by differentiating the resources between the two stacks by assigning different logical IDs or adding another level of nesting.

For example, you can put each of your stack instances in a different CDK Stage, or you can differentiate the resources by adding a unique identifier to the logical IDs or to the stack names.

Here is an example using stages:

class MyStage extends cdk.Stage {
  constructor(scope: cdk.Construct, id: string, props?: cdk.StageProps) {
    super(scope, id, props);

    new MyStack(this, 'MyStack');
  }
}

const app = new cdk.App();
new MyStage(app, 'Prod', { env: { region: 'us-west-2' } });
new MyStage(app, 'Dev', { env: { region: 'us-west-2' } });

Hope that helps!

-Zac

profile picture
Zac Dan
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ