Skip to content

Commit

Permalink
Fixed installer stack naming (#1121)
Browse files Browse the repository at this point in the history
  • Loading branch information
hickeydh-aws authored Mar 10, 2023
1 parent 5ee54ec commit c2f833a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer/cdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c2f833a

Please sign in to comment.