Replies: 2 comments
-
I am not an expert of CDK internal. But I did some code search. It looks to me that uniqueId() in pipelines is the relevant code making the chained resource name in CodePipeline. /**
* A graph-wide unique identifier for this node. Rendered by joining the IDs
* of all ancestors with hyphens.
*/
public get uniqueId(): string {
return this.ancestorPath(this.root).map(x => x.id).join('-');
} Would it be possible to add a control flag to disable joining all the ancestorPath? |
Beta Was this translation helpful? Give feedback.
0 replies
-
In my case, it doesn't look like all the resources have the pipeline ID added to their ID? Did you find a solution to that problem? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
TL;DR
Background
Question
GR-ST
part of the prefix is taken out.Appendix. Code Used
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions