Skip to content

Commit

Permalink
fix nested stack issue not being deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Park committed Nov 15, 2023
1 parent ddf3d7d commit f7bdb70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Stack, StackProps } from "aws-cdk-lib";
import { NestedStack, StackProps } from "aws-cdk-lib";
import { Construct } from "constructs";
import { StringListParameter } from "aws-cdk-lib/aws-ssm";

Expand Down Expand Up @@ -42,7 +42,7 @@ export interface PrerenderTokenUrlAssociationOptions extends StackProps {
* The constructor loops through the tokenUrlAssociation object and
* creates an SSM parameter for each token.
*/
export class PrerenderTokenUrlAssociation extends Stack {
export class PrerenderTokenUrlAssociation extends NestedStack {
constructor(
scope: Construct,
id: string,
Expand Down
2 changes: 1 addition & 1 deletion packages/prerender-fargate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aligent/cdk-prerender-fargate",
"version": "2.1.0",
"version": "2.1.0-alpha3",
"description": "A construct to host Prerender in Fargate",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f7bdb70

Please sign in to comment.