Skip to content

Commit c2f833a

Browse files
authored
Fixed installer stack naming (#1121)
1 parent 5ee54ec commit c2f833a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/installer/cdk/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async function main() {
5151
`Invalid value for repo_source: ${repoSource} Must repo_source must be one of [github|codecommit]`,
5252
);
5353
}
54-
new Installer(app, `InstallerStack-${repoSource}`, {
54+
new Installer(app, `AcceleratorInstaller${repoSource === RepositorySources.CODECOMMIT ? '-CodeCommit' : ''}`, {
5555
stackName: `AcceleratorInstaller${repoSource === RepositorySources.CODECOMMIT ? '-CodeCommit' : ''}`,
5656
repoSource,
5757
acceleratorVersion,

0 commit comments

Comments
 (0)