Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(infra): include namespace in application stack id #130

Merged
merged 1 commit into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ const app = new App({
});

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, 'infra-sandbox', {
new ApplicationStack(app, 'dungeon-adventure-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down Expand Up @@ -904,7 +904,7 @@ import { ApplicationStack } from './stacks/application-stack.js';
+const app = new App();

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, 'infra-sandbox', {
new ApplicationStack(app, 'dungeon-adventure-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down
28 changes: 14 additions & 14 deletions docs/src/content/docs/get_started/tutorials/dungeon-game/2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -550,14 +550,14 @@ If you encounter any lint errors, you can run the following command to automatic

Your application can now be deployed by running the following command:

<NxCommands commands={['run @dungeon-adventure/infra:deploy infra-sandbox']} />
<NxCommands commands={['run @dungeon-adventure/infra:deploy dungeon-adventure-infra-sandbox']} />

Your first deployment will take around 8 minutes to complete. Subsequent deployments will take around 2 minutes.

:::tip
If you're iterating on lambda function code changes, you can deploy with the `--hotswap` flag after building the codebase for a much shorter (2-3 second) deployment time.

<NxCommands commands={['run @dungeon-adventure/infra:deploy infra-sandbox --hotswap']} />
<NxCommands commands={['run @dungeon-adventure/infra:deploy dungeon-adventure-infra-sandbox --hotswap']} />
:::

<Drawer title="Deployment command" trigger="You can also deploy all stacks at once. Click here for more details.">
Expand All @@ -573,20 +573,20 @@ This is **not recommended** given that you may choose to seperate out your deplo
Once the deployment completes, you should see some outputs similar to the following _(some values have been redacted)_:

```bash
infra-sandbox
infra-sandbox: deploying... [2/2]
dungeon-adventure-infra-sandbox
dungeon-adventure-infra-sandbox: deploying... [2/2]

✅ infra-sandbox
dungeon-adventure-infra-sandbox

✨ Deployment time: 354s

Outputs:
infra-sandbox.ElectroDbTableTableNameXXX = infra-sandbox-ElectroDbTableXXX-YYY
infra-sandbox.GameApiGameApiUrlXXX = https://xxx.region.amazonaws.com/
infra-sandbox.GameUIDistributionDomainNameXXX = xxx.cloudfront.net
infra-sandbox.StoryApiStoryApiUrlXXX = https://xxx.execute-api.region.amazonaws.com/
infra-sandbox.UserIdentityUserIdentityIdentityPoolIdXXX = region:xxx
infra-sandbox.UserIdentityUserIdentityUserPoolIdXXX = region_xxx
dungeon-adventure-infra-sandbox.ElectroDbTableTableNameXXX = dungeon-adventure-infra-sandbox-ElectroDbTableXXX-YYY
dungeon-adventure-infra-sandbox.GameApiGameApiUrlXXX = https://xxx.region.amazonaws.com/
dungeon-adventure-infra-sandbox.GameUIDistributionDomainNameXXX = xxx.cloudfront.net
dungeon-adventure-infra-sandbox.StoryApiStoryApiUrlXXX = https://xxx.execute-api.region.amazonaws.com/
dungeon-adventure-infra-sandbox.UserIdentityUserIdentityIdentityPoolIdXXX = region:xxx
dungeon-adventure-infra-sandbox.UserIdentityUserIdentityUserPoolIdXXX = region_xxx
```

We can test our API by either:
Expand Down Expand Up @@ -625,10 +625,10 @@ acurl ap-southeast-2 lambda -N -X POST https://xxx
<TabItem label="Local">
Start your local `game-api` server by running the following command:

<NxCommands highlights={['infra-sandbox-ElectroDbTableXXX-YYY']} env={{TABLE_NAME:"infra-sandbox-ElectroDbTableXXX-YYY"}} commands={["run @dungeon-adventure/game-api-backend:serve"]} />
<NxCommands highlights={['dungeon-adventure-infra-sandbox-ElectroDbTableXXX-YYY']} env={{TABLE_NAME:"dungeon-adventure-infra-sandbox-ElectroDbTableXXX-YYY"}} commands={["run @dungeon-adventure/game-api-backend:serve"]} />

<Aside type="caution">
Use the CDK deploy output value of `infra-sandbox.ElectroDbTableTableNameXXX` to replace the highlighted placeholder.
Use the CDK deploy output value of `dungeon-adventure-infra-sandbox.ElectroDbTableTableNameXXX` to replace the highlighted placeholder.
</Aside>

Once your server is up and running, you can call it by running the following command:
Expand All @@ -643,7 +643,7 @@ acurl ap-southeast-2 execute-api -X GET \
https://xxx.execute-api.region.amazonaws.com/games.query\?input\="\{\}"
```
<Aside type="caution">
Use the CDK deploy output value of `infra-sandbox.GameApiGameApiUrlXXX` to replace the highlighted placeholder and set the region accordingly..
Use the CDK deploy output value of `dungeon-adventure-infra-sandbox.GameApiGameApiUrlXXX` to replace the highlighted placeholder and set the region accordingly..
</Aside>
</TabItem>
</Tabs>
Expand Down
22 changes: 11 additions & 11 deletions docs/src/content/docs/get_started/tutorials/dungeon-game/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ If you encounter any lint errors, you can run the following command to automatic

Your application can now be deployed by running the following command:

<NxCommands commands={['run @dungeon-adventure/infra:deploy infra-sandbox']} />
<NxCommands commands={['run @dungeon-adventure/infra:deploy dungeon-adventure-infra-sandbox']} />

This deployment will take around 2 minutes to complete.

Expand All @@ -393,20 +393,20 @@ This is **not recommended** given that you may choose to seperate out your deplo
Once the deployment completes, you should see some outputs similar to the following _(some values have been redacted)_:

```bash
infra-sandbox
infra-sandbox: deploying... [2/2]
dungeon-adventure-infra-sandbox
dungeon-adventure-infra-sandbox: deploying... [2/2]

✅ infra-sandbox
dungeon-adventure-infra-sandbox

✨ Deployment time: 354s

Outputs:
infra-sandbox.ElectroDbTableTableNameXXX = infra-sandbox-ElectroDbTableXXX-YYY
infra-sandbox.GameApiGameApiUrlXXX = https://xxx.region.amazonaws.com/
infra-sandbox.GameUIDistributionDomainNameXXX = xxx.cloudfront.net
infra-sandbox.StoryApiStoryApiUrlXXX = https://xxx.lambda-url.ap-southeast-2.on.aws/
infra-sandbox.UserIdentityUserIdentityIdentityPoolIdXXX = region:xxx
infra-sandbox.UserIdentityUserIdentityUserPoolIdXXX = region_xxx
dungeon-adventure-infra-sandbox.ElectroDbTableTableNameXXX = dungeon-adventure-infra-sandbox-ElectroDbTableXXX-YYY
dungeon-adventure-infra-sandbox.GameApiGameApiUrlXXX = https://xxx.region.amazonaws.com/
dungeon-adventure-infra-sandbox.GameUIDistributionDomainNameXXX = xxx.cloudfront.net
dungeon-adventure-infra-sandbox.StoryApiStoryApiUrlXXX = https://xxx.lambda-url.ap-southeast-2.on.aws/
dungeon-adventure-infra-sandbox.UserIdentityUserIdentityIdentityPoolIdXXX = region:xxx
dungeon-adventure-infra-sandbox.UserIdentityUserIdentityUserPoolIdXXX = region_xxx
```

We can test our API by either:
Expand Down Expand Up @@ -461,7 +461,7 @@ acurl ap-southeast-2 lambda -N -X POST \
-H "Content-Type: application/json"
```
<Aside type="caution">
Use the CDK deploy output value of `infra-sandbox.StoryApiStoryApiUrlXXX` to replace the highlighted url placeholder and set the region accordingly.
Use the CDK deploy output value of `dungeon-adventure-infra-sandbox.StoryApiStoryApiUrlXXX` to replace the highlighted url placeholder and set the region accordingly.
</Aside>
</TabItem>
</Tabs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ To build your code, run the following command:

Now deploy your application:

<NxCommands commands={['run @dungeon-adventure/infra:deploy infra-sandbox']} />
<NxCommands commands={['run @dungeon-adventure/infra:deploy dungeon-adventure-infra-sandbox']} />

Once deployed, navigate to your Cloudfront url which can be found by inspecting the cdk deploy outputs.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ To destroy the AWS resources that were created, run the following command:

<NxCommands commands={['run @dungeon-adventure/infra:destroy --all']} />

This will prompt you for a list of stacks to delete which should comprise of the `waf` and `infra-sandbox`. Enter `Y` and then Cloudformation will destroy your stacks.
This will prompt you for a list of stacks to delete which should comprise of the `waf` and `dungeon-adventure-infra-sandbox`. Enter `Y` and then Cloudformation will destroy your stacks.
2 changes: 1 addition & 1 deletion docs/src/content/docs/guides/cloudscape-website.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Your website project is configured with a `load:runtime-config` target which you
<NxCommands commands={['run <my-website>:"load:runtime-config"']} />

:::warning
If you change the name of your stack in your infrastructure project's `src/main.ts`, you will need to update the `load:runtime-config` target in your website's `project.json` file to replace `infra-sandbox` with the name of the stack to load runtime configuration from.
If you change the name of your stack in your infrastructure project's `src/main.ts`, you will need to update the `load:runtime-config` target in your website's `project.json` file with the name of the stack to load runtime configuration from.
:::

## Local Development Server
Expand Down
3 changes: 2 additions & 1 deletion packages/nx-plugin/src/cloudscape-website/app/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import {
import { formatFilesInSubtree } from '../../utils/format';
import { relative } from 'path';
import { sortObjectKeys } from '../../utils/nx';
import kebabCase from 'lodash.kebabcase';

export async function appGenerator(tree: Tree, schema: AppGeneratorSchema) {
const npmScopePrefix = getNpmScopePrefix(tree);
Expand Down Expand Up @@ -82,7 +83,7 @@ export async function appGenerator(tree: Tree, schema: AppGeneratorSchema) {
description: `Load runtime config from your deployed stack for dev purposes. You must set the AWS_REGION and CDK_APP_DIR env variables whilst calling i.e: AWS_REGION=ap-southeast-2 CDK_APP_DIR=./dist/packages/infra/cdk.out pnpm exec nx run ${fullyQualifiedName}:load:runtime-config`,
},
options: {
command: `curl https://\`aws cloudformation describe-stacks --query "Stacks[?StackName=='infra-sandbox'][].Outputs[?contains(OutputKey, 'DistributionDomainName')].OutputValue" --output text\`/runtime-config.json > './${websiteContentPath}/public/runtime-config.json'`,
command: `curl https://\`aws cloudformation describe-stacks --query "Stacks[?StackName=='${kebabCase(npmScopePrefix)}-infra-sandbox'][].Outputs[?contains(OutputKey, 'DistributionDomainName')].OutputValue" --output text\`/runtime-config.json > './${websiteContentPath}/public/runtime-config.json'`,
},
};
const buildTarget = targets['build'];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const app = new App({
});

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, 'test-sandbox', {
new ApplicationStack(app, 'proj-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down Expand Up @@ -382,7 +382,7 @@ const app = new App({
});

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, 'test-sandbox', {
new ApplicationStack(app, 'proj-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down Expand Up @@ -526,7 +526,7 @@ const app = new App({
});

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, 'test-sandbox', {
new ApplicationStack(app, 'proj-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down Expand Up @@ -635,7 +635,7 @@ const app = new App({
});

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, 'test-sandbox', {
new ApplicationStack(app, 'proj-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down Expand Up @@ -740,7 +740,7 @@ const app = new App({
});

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, 'custom-infra-sandbox', {
new ApplicationStack(app, 'proj-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const app = new App({
});

// Use this to deploy your own sandbox environment (assumes your CLI credentials)
new ApplicationStack(app, '<%= name %>-sandbox', {
new ApplicationStack(app, '<%= namespace %>-infra-sandbox', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
Expand Down
2 changes: 2 additions & 0 deletions packages/nx-plugin/src/infra/app/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { addStarExport } from '../../utils/ast';
import path from 'path';
import { formatFilesInSubtree } from '../../utils/format';
import { sortObjectKeys } from '../../utils/nx';
import kebabCase from 'lodash.kebabcase';

export async function infraGenerator(
tree: Tree,
Expand Down Expand Up @@ -55,6 +56,7 @@ export async function infraGenerator(
{
synthDir: synthDirFromProject,
scopeAlias: scopeAlias,
namespace: kebabCase(npmScopePrefix),
fullyQualifiedName,
pkgMgrCmd: getPackageManagerCommand().exec,
...schema,
Expand Down