Skip to content

Commit

Permalink
Workflow: Update cdk folder name to .cdk in READMEs to match the actu…
Browse files Browse the repository at this point in the history
…al folder name. (#6985)

Update cdk folder name to .cdk in READMEs to match the actual folder name.
  • Loading branch information
Laren-AWS authored Oct 17, 2024
1 parent af49a86 commit 0850306
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gov2/workflows/user_pools_and_lambda_triggers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ The AWS resources for this example are deployed by using the AWS Cloud Developme
To install the AWS CDK, follow the instructions in the
[Developer Guide](https://docs.aws.amazon.com/cdk/v2/guide/home.html).

Deploy resources at a command prompt from the [cdk](cdk) folder:
Deploy resources at a command prompt from the [.cdk](.cdk) folder:

```
npm install
Expand All @@ -86,7 +86,7 @@ go run ./cmd -scenario [auto_confirm migrate_user activity_log]

Delete resources deployed for this example by deleting the stack.

Delete the stack at a command prompt from the [cdk](cdk) folder:
Delete the stack at a command prompt from the [.cdk](.cdk) folder:

```
cdk destroy
Expand Down
4 changes: 2 additions & 2 deletions workflows/user_pools_and_lambda_triggers/SPECIFICATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ can be used as a reference for writing this example in other languages.
### Create AWS resources

The `PoolsAndTriggersBase` CDK construct in the
[reference implementation for Go](../../gov2/workflows/user_pools_and_lambda_triggers/cdk/lib/pools-and-triggers-base.ts)
[reference implementation for Go](../../gov2/workflows/user_pools_and_lambda_triggers/.cdk/lib/pools-and-triggers-base.ts)
folder creates all of the common AWS resources you need for this example:

* Amazon DynamoDB table with a `UserEmail` primary key.
Expand All @@ -40,7 +40,7 @@ folder creates all of the common AWS resources you need for this example:

This construct is intended as a base script that you copy to your implementation and include in a stack that
deploys Lambda handlers in the way that works best for your language.
For an example, see the [reference implementation for Go](../../gov2/workflows/user_pools_and_lambda_triggers/cdk/lib/pools-and-triggers-stack.ts).
For an example, see the [reference implementation for Go](../../gov2/workflows/user_pools_and_lambda_triggers/.cdk/lib/pools-and-triggers-stack.ts).

Because most languages require a bootstrap environment that contains an S3 bucket for staging Lambda handlers,
it's recommended that you use `cdk deploy` to deploy resources, but if your language supports it you can use
Expand Down

0 comments on commit 0850306

Please sign in to comment.