Skip to content

Commit fa0a9a0

Browse files
committed
Fix names of resource.
1 parent a934d7a commit fa0a9a0

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

make.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ function getVersion() {
3838
const version = getVersion();
3939
commander.version(version);
4040

41-
const parameters = { hostedName: 'dev0ps.fyi' };
41+
const parameters = {
42+
hostedName: 'dev0ps.fyi',
43+
serviceName: 'LinksProxy',
44+
serviceDescription: 'Links Proxy for tracking link clicks.'
45+
};
4246

4347
const contentOptions = {
4448
bucket: parameters.hostedName,

template/cloudFormationWebsiteTemplate.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ const stackProvider = {
1313
},
1414
serviceName: {
1515
Type: 'String',
16-
Description: 'The name of this service',
17-
Default: 'KnowledgeBase'
16+
Description: 'The name of this service'
1817
},
1918
serviceDescription: {
2019
Type: 'String',
21-
Description: 'Helpful description for the service',
22-
Default: 'Knowledge Base'
20+
Description: 'Helpful description for the service'
2321
}
2422
},
2523

0 commit comments

Comments
 (0)