-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: introduce
pulumiResourceNamePrefix
parameter
* feat: introduce `prefixPulumiResources` * feat: introduce `prefixPulumiResources` * feat: rename `prefixPulumiResources` to `pulumiResourceNamePrefix`
- Loading branch information
Showing
15 changed files
with
97 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import { createAdminApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createAdminApp(); | ||
export default createAdminApp({ | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import { createApiApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createApiApp(); | ||
export default createApiApp({ | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { createCoreApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createCoreApp({ | ||
elasticSearch: false | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import { createWebsiteApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createWebsiteApp(); | ||
export default createWebsiteApp({ | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
4 changes: 3 additions & 1 deletion
4
packages/cwp-template-aws/template/common/apps/admin/webiny.application.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import { createAdminApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createAdminApp(); | ||
export default createAdminApp({ | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
4 changes: 3 additions & 1 deletion
4
packages/cwp-template-aws/template/common/apps/website/webiny.application.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import { createWebsiteApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createWebsiteApp(); | ||
export default createWebsiteApp({ | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
3 changes: 2 additions & 1 deletion
3
packages/cwp-template-aws/template/ddb-es/apps/api/webiny.application.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import { createApiApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createApiApp({ | ||
elasticSearch: true | ||
elasticSearch: true, | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
3 changes: 2 additions & 1 deletion
3
packages/cwp-template-aws/template/ddb-es/apps/core/webiny.application.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import { createCoreApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createCoreApp({ | ||
elasticSearch: true | ||
elasticSearch: true, | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
4 changes: 3 additions & 1 deletion
4
packages/cwp-template-aws/template/ddb/apps/api/webiny.application.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import { createApiApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createApiApp(); | ||
export default createApiApp({ | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
4 changes: 3 additions & 1 deletion
4
packages/cwp-template-aws/template/ddb/apps/core/webiny.application.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import { createCoreApp } from "@webiny/serverless-cms-aws"; | ||
|
||
export default createCoreApp(); | ||
export default createCoreApp({ | ||
pulumiResourceNamePrefix: "wby-" | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters