From c2f833a1f863936a8aae254fb3e4af6f90ad45cd Mon Sep 17 00:00:00 2001 From: hickeydh-aws <88673813+hickeydh-aws@users.noreply.github.com> Date: Fri, 10 Mar 2023 10:35:35 -0600 Subject: [PATCH] Fixed installer stack naming (#1121) --- src/installer/cdk/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/cdk/src/index.ts b/src/installer/cdk/src/index.ts index 7a84a95ed..c8232c8d7 100644 --- a/src/installer/cdk/src/index.ts +++ b/src/installer/cdk/src/index.ts @@ -51,7 +51,7 @@ async function main() { `Invalid value for repo_source: ${repoSource} Must repo_source must be one of [github|codecommit]`, ); } - new Installer(app, `InstallerStack-${repoSource}`, { + new Installer(app, `AcceleratorInstaller${repoSource === RepositorySources.CODECOMMIT ? '-CodeCommit' : ''}`, { stackName: `AcceleratorInstaller${repoSource === RepositorySources.CODECOMMIT ? '-CodeCommit' : ''}`, repoSource, acceleratorVersion,