Skip to content

Commit

Permalink
Fix typo in handling-secrets-in-sst.md (#757)
Browse files Browse the repository at this point in the history
Lesson said "ApiStack.js" when it should have been "ApiStack.ts".
  • Loading branch information
Phoenix-Roy authored Feb 9, 2024
1 parent 535ecc9 commit e21deeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _chapters/handling-secrets-in-sst.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Now that the secret is stored in AWS Parameter Store, we can add it into our sta
const STRIPE_SECRET_KEY = new Config.Secret(stack, "STRIPE_SECRET_KEY");
```

{%change%} Import `Config` in `stacks/ApiStack.js`. Replace the following.
{%change%} Import `Config` in `stacks/ApiStack.ts`. Replace the following.

```typescript
import { Api, StackContext, use } from "sst/constructs";
Expand Down

0 comments on commit e21deeb

Please sign in to comment.