Skip to content

Commit

Permalink
Fixing links
Browse files Browse the repository at this point in the history
  • Loading branch information
jayair committed Jul 25, 2024
1 parent f23dc17 commit d36d983
Show file tree
Hide file tree
Showing 56 changed files with 59 additions and 59 deletions.
2 changes: 1 addition & 1 deletion _archives/best-practices-for-building-serverless-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The following repos will serve as the centerpiece of this section:

1. [**Serverless Infrastructure**]({{ site.backend_ext_resources_github_repo }})

A repo containing all the main infrastructure resources of our extended notes application. We are creating a DynamoDB table to store all the notes related info, an S3 bucket for uploading attachments, and a Cognito User Pool and Identity Pool to authenticate users. We'll be using [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}) with [SST](https://github.com/sst/sst).
A repo containing all the main infrastructure resources of our extended notes application. We are creating a DynamoDB table to store all the notes related info, an S3 bucket for uploading attachments, and a Cognito User Pool and Identity Pool to authenticate users. We'll be using [AWS CDK]({% link _archives/what-is-aws-cdk.md %}) with [SST](https://github.com/sst/sst).

2. [**Serverless Services**]({{ site.backend_ext_api_github_repo }})

Expand Down
2 changes: 1 addition & 1 deletion _archives/cross-stack-references-in-serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ In the previous chapter we looked at [some of the most common patterns for organ

You might recall that a Serverless Framework service is where a single `serverless.yml` is used to define the project. And the `serverless.yml` file is converted into a [CloudFormation template](https://aws.amazon.com/cloudformation/aws-cloudformation-templates/) using Serverless Framework. This means that in the case of multiple services you might need to reference a resource that is available in a different service.

You also might be defining your AWS infrastructure using [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}). And you want to make sure your serverless API is connected to those resources.
You also might be defining your AWS infrastructure using [AWS CDK]({% link _archives/what-is-aws-cdk.md %}). And you want to make sure your serverless API is connected to those resources.

For example, you might have your DynamoDB tables created in CDK and your APIs (as a Serverless Framework service) need to refer to them. Of course you don't want to hard code this. To do this we are going to be using cross-stack references.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ $ npx create-sst@one --template=minimal/javascript-starter social-cards
$ cd social-cards
```

The infrastructure in our app is defined using [CDK]({% link _chapters/what-is-aws-cdk.md %}). Currently we just have a simple API that invokes a Lambda function.
The infrastructure in our app is defined using [CDK]({% link _archives/what-is-aws-cdk.md %}). Currently we just have a simple API that invokes a Lambda function.

You can see this in `stacks/MyStack.js`.

Expand Down
2 changes: 1 addition & 1 deletion _archives/organizing-serverless-projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First let's start by quickly looking at the common terms used when talking about

- **Stack**

A stack is a collection of resources that you manage as a single unit. We define CloudFormation stacks using [CDK]({% link _chapters/what-is-aws-cdk.md %}).
A stack is a collection of resources that you manage as a single unit. We define CloudFormation stacks using [CDK]({% link _archives/what-is-aws-cdk.md %}).

- **Application**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Next, let's look at what happens when we deploy our full-stack app.

## While Deploying

We need our React app to be deployed with our environment variables. SST uses [CDK]({% link _chapters/what-is-aws-cdk.md %}){:target="_blank"} internally, so the flow looks something like this.
We need our React app to be deployed with our environment variables. SST uses [CDK]({% link _archives/what-is-aws-cdk.md %}){:target="_blank"} internally, so the flow looks something like this.

1. Deploy our API.
2. Build our React app.
Expand Down
2 changes: 1 addition & 1 deletion _archives/setup-the-serverless-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ redirect_from: /chapters/setup-the-serverless-framework.html
In this section we are going to use [Serverless Framework](https://github.com/serverless/serverless) to build our serverless app. It's very similar to [the notes app that we built using SST]({{ site.sst_demo_repo }}). With a couple of key differences:

- We are only building the backend in Serverless Framework.
- The backend is defined using [CloudFormation](https://aws.amazon.com/cloudformation) in Serverless Framework. While we use [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}) in SST.
- The backend is defined using [CloudFormation](https://aws.amazon.com/cloudformation) in Serverless Framework. While we use [AWS CDK]({% link _archives/what-is-aws-cdk.md %}) in SST.

### Demo Repo

Expand Down
2 changes: 1 addition & 1 deletion _archives/using-aws-cdk-with-serverless-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ In this guide we've looked at two different ways of creating serverless applicat

As in, you can create your infrastructure with SST and manage your Lambda functions and APIs with Serverless Framework. There are a couple of reasons why you might find yourself wanting to do this.

1. Your applications are currently built using Serverless Framework and you want to use [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}) instead of [CloudFormation for your resources]({% link _archives/configure-dynamodb-in-serverless.md %}).
1. Your applications are currently built using Serverless Framework and you want to use [AWS CDK]({% link _archives/what-is-aws-cdk.md %}) instead of [CloudFormation for your resources]({% link _archives/configure-dynamodb-in-serverless.md %}).
2. Or, you are looking to [migrate from Serverless Framework to SST]({{ site.docs_url }}/migrating-from-serverless-framework).

In this chapter we'll look at how we can use SST to define your infrastructure using CDK and connecting that to our Serverless Framework app.
Expand Down
2 changes: 1 addition & 1 deletion _chapters/ko/manage-environments-in-create-react-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default {
};
```

다른 버전의 자원을 [Seed를 통해 배포]({% link _chapters/deploying-through-seed.md %}) 챕터의 자원으로 바꿔야합니다.
다른 버전의 자원을 [Seed를 통해 배포]({% link _chapters/deploying-through-the-sst-console.md %}) 챕터의 자원으로 바꿔야합니다.

`REACT_APP_STAGE`가 설정되어 있지 않으면 dev 환경을 기본값으로 설정한다는 것에주의하십시오. 이것은 현재의 빌드 프로세스(`npm start``npm run build`)가 `dev` 환경을 기본값으로한다는 것을 의미합니다. 그리고 두 환경에 공통적인 `MAX_ATTACHMENT_SIZE`와 같은 설정 값에 대해서는 다른 섹션에서 다루겠습니다.

Expand Down
6 changes: 3 additions & 3 deletions _chapters/ko/test-the-configured-apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $ aws cognito-idp sign-up \
--password Passw0rd!
```

Cognito App Client ID의 **dev** 버전을 찾으려면 [Seed를 통한 배포]({% link _chapters/deploying-through-seed.md %}) 챕터를 참조하십시오. 그리고`YOUR_DEV_COGNITO_REGION`을 배포한 지역으로 대체하십시오.
Cognito App Client ID의 **dev** 버전을 찾으려면 [Seed를 통한 배포]({% link _chapters/deploying-through-the-sst-console.md %}) 챕터를 참조하십시오. 그리고`YOUR_DEV_COGNITO_REGION`을 배포한 지역으로 대체하십시오.

<img class="code-marker" src="/assets/s.png"/> 다음으로 Cognito Admin CLI를 통해 사용자를 확인합니다.

Expand All @@ -37,7 +37,7 @@ $ aws cognito-idp admin-confirm-sign-up \
--username [email protected]
```

리전과 `YOUR_DEV_COGNITO_USER_POOL_ID`[Seed를 통한 배포]({% link _chapters/deploying-through-seed.md %}) 챕터의 Cognito User Pool ID의 **dev** 버전으로 대체하십시오.
리전과 `YOUR_DEV_COGNITO_USER_POOL_ID`[Seed를 통한 배포]({% link _chapters/deploying-through-the-sst-console.md %}) 챕터의 Cognito User Pool ID의 **dev** 버전으로 대체하십시오.

**prod** 버전에서도 동일한 작업을 신속하게 수행합니다.

Expand Down Expand Up @@ -85,7 +85,7 @@ $ npx aws-api-gateway-cli-test \
--body='{"content":"hello world","attachment":"hello.jpg"}'
```

다음을 위해 [Seed를 통한 배포]({% link _chapters/deploying-through-seed.md %}) 챕터를 참조하십시오.
다음을 위해 [Seed를 통한 배포]({% link _chapters/deploying-through-the-sst-console.md %}) 챕터를 참조하십시오.

- `YOUR_DEV_COGNITO_USER_POOL_ID``YOUR_DEV_COGNITO_APP_CLIENT_ID`는 모두 사용자의 Cognito 사용자 풀과 관련이 있습니다.
- `YOUR_DEV_IDENTITY_POOL_ID`는 여러분의 Cognito ID 풀을 위한 것입니다.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
2 changes: 1 addition & 1 deletion _examples/how-to-add-facebook-login-to-your-sst-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of three parts.

1. `stacks/` — Infrastructure code

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — Application code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
2 changes: 1 addition & 1 deletion _examples/how-to-add-google-login-to-your-sst-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of three parts.

1. `stacks/` — Infrastructure code

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — Application code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
2 changes: 1 addition & 1 deletion _examples/how-to-create-a-flutter-app-with-serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An SST app is made up of a couple of parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
2 changes: 1 addition & 1 deletion _examples/how-to-create-a-gatsbyjs-app-with-serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of a couple of parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
2 changes: 1 addition & 1 deletion _examples/how-to-create-a-nextjs-app-with-serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
} satisfies SSTConfig;
```

The `stacks` code describes the infrastructure of your serverless app. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}).
The `stacks` code describes the infrastructure of your serverless app. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}).

You are **ready to deploy** your Next.js app at this point! But for the purpose of this example, we'll go a bit further and add a file uploads feature to our app.

Expand Down
2 changes: 1 addition & 1 deletion _examples/how-to-create-a-reactjs-app-with-serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of a couple of parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
2 changes: 1 addition & 1 deletion _examples/how-to-create-a-rest-api-with-serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An SST app is made up of two parts.

1. `stacks/` — App Infrastructure

The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _chapters/what-is-aws-cdk.md %}), to create the infrastructure.
The code that describes the infrastructure of your serverless app is placed in the `stacks/` directory of your project. SST uses [AWS CDK]({% link _archives/what-is-aws-cdk.md %}), to create the infrastructure.

2. `packages/functions/` — App Code

Expand Down
Loading

0 comments on commit d36d983

Please sign in to comment.