Skip to content
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
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
Loading