You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: content/en/getting-started/auth-token/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ You have the option to run your LocalStack container in the background by append
97
97
The `localstack` CLI automatically detects the Auth Token and appropriately conveys it to the LocalStack container.
98
98
99
99
{{< callout "note" >}}
100
-
If you are using LocalStack with an Auth Token, it's necessary to download the [LocalStack Pro image](https://docs.localstack.cloud/references/docker-images/#localstack-pro-image), which includes Pro services and several advanced features.
100
+
If you are using LocalStack with an Auth Token, it's necessary to download the [LocalStack Pro image]({{< ref "/references/docker-images/#localstack-pro-image" >}}), which includes Pro services and several advanced features.
101
101
{{< /callout >}}
102
102
103
103
### Docker
@@ -113,7 +113,7 @@ $ docker run \
113
113
localstack/localstack-pro
114
114
{{< / command >}}
115
115
116
-
For more information about starting LocalStack with Docker, take a look at our [Docker installation](https://docs.localstack.cloud/getting-started/installation/#docker) guide.
116
+
For more information about starting LocalStack with Docker, take a look at our [Docker installation]({{< ref "/getting-started/installation/#docker" >}}) guide.
117
117
118
118
### Docker Compose
119
119
@@ -134,7 +134,7 @@ Developer Auth Tokens cannot be used in CI.
134
134
CI Auth Tokens are available on the [Auth Tokens page](https://app.localstack.cloud/workspace/auth-tokens) and are configured similarly to Developer Auth Tokens.
135
135
136
136
To set the CI Auth Token, add the Auth Token value in the `LOCALSTACK_AUTH_TOKEN` environment variable of your CI provider, and refer to it when starting LocalStack in your CI workflow.
137
-
You can find detailed examples in our [LocalStack in CI documentation](https://docs.localstack.cloud/user-guide/ci/).
137
+
You can find detailed examples in our [LocalStack in CI documentation]({{< ref "/user-guide/ci/" >}}).
138
138
139
139
## Rotating the Auth Token
140
140
@@ -150,7 +150,7 @@ To rotate your Auth Token, go to the [Auth Token page](https://app.localstack.cl
150
150
## Licensing configuration & activation checkup
151
151
152
152
To avoid logging any licensing-related error messages, set `LOG_LICENSE_ISSUES=0` in your environment.
153
-
Refer to our [configuration guide](https://docs.localstack.cloud/references/configuration/#localstack-pro) for more information.
153
+
Refer to our [configuration guide]({{< ref "/references/configuration/#localstack-pro" >}}) for more information.
154
154
155
155
The simplest method to verify if LocalStack is active is by querying the health endpoint for a list of running services:
-[Terraform](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli) or [OpenTofu](https://opentofu.org/docs/intro/install/) and [terraform-local](https://docs.localstack.cloud/user-guide/integrations/terraform/#install-the-tflocal-wrapper-script)
49
+
-[Terraform](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli) or [OpenTofu](https://opentofu.org/docs/intro/install/) and [terraform-local]({{< ref "/user-guide/integrations/terraform/#install-the-tflocal-wrapper-script" >}})
Copy file name to clipboardExpand all lines: content/en/tutorials/iam-policy-stream/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ You'll generate the policy for the bucket notification configuration and insert
33
33
34
34
## Why use IAM Policy Stream?
35
35
36
-
LocalStack enables you to create and enforce local IAM roles and policies using the [`ENFORCE_IAM` feature](https://docs.localstack.cloud/user-guide/security-testing/iam-enforcement/).
36
+
LocalStack enables you to create and enforce local IAM roles and policies using the [`ENFORCE_IAM` feature]({{< ref "/user-guide/security-testing/iam-enforcement/" >}}).
37
37
However, users often struggle to figure out the necessary permissions for different actions.
38
38
It's important to find a balance, avoiding giving too many permissions while making sure the right ones are granted.
39
39
@@ -46,7 +46,7 @@ Additionally, it serves as a useful learning tool, helping users understand the
46
46
47
47
## Prerequisites
48
48
49
-
-[LocalStack CLI](https://docs.localstack.cloud/getting-started/installation/#localstack-cli) with [`LOCALSTACK_AUTH_TOKEN`](https://docs.localstack.cloud/getting-started/auth-token/)
49
+
-[LocalStack CLI]({{< ref "/getting-started/installation/#localstack-cli" >}}) with [`LOCALSTACK_AUTH_TOKEN`]({{< ref "/getting-started/auth-token/">}})
-[AWS CLI](https://docs.aws.amazon.com/cli/v1/userguide/cli-chap-install.html) with [`awslocal` wrapper](https://github.com/localstack/awscli-local)
40
40
-[LocalStack Web Application account](https://app.localstack.cloud/sign-up)
41
41
-[AWS Account](https://aws.amazon.com/) with an [`AWS_ACCESS_KEY_ID` & `AWS_SECRET_ACCESS_KEY`](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey)
LocalStack is a robust tool that emulates a local AWS cloud stack, allowing engineers to test and develop apps using AWS services directly on their local environments.
31
31
This tool is essential for enhancing developer experience, reducing development costs and increasing efficiency.
32
32
33
-
In LocalStack, [**initialization hooks**](https://docs.localstack.cloud/references/init-hooks/) are scripts that customize or initialize your LocalStack instance at different stages of its lifecycle.
33
+
In LocalStack, [**initialization hooks**]({{< ref "/references/init-hooks/" >}}) are scripts that customize or initialize your LocalStack instance at different stages of its lifecycle.
34
34
Up until now, the supported hooks could be shell or Python scripts executed at predefined lifecycle phases — BOOT, START, READY, and SHUTDOWN.
35
35
By placing scripts in the respective directories (/etc/localstack/init/{stage}.d), developers can automate tasks like setting up initial states, configuring services, or performing clean-up activities.
36
36
@@ -45,10 +45,10 @@ This approach simplifies the development and testing cycle, making it more effic
45
45
46
46
For this tutorial, you will need:
47
47
48
-
-[LocalStack Pro](https://docs.localstack.cloud/getting-started/auth-token/) to emulate the AWS services and to use LocalStack Extensions.
48
+
-[LocalStack Pro]({{< ref "/getting-started/auth-token/" >}}) to emulate the AWS services and to use LocalStack Extensions.
49
49
If you don't have LocalStack Pro yet, you can sign up on our [webapp](https://app.localstack.cloud) to get a trial license for free.
- Optional for building the Lambda functions: [Java 17](https://openjdk.org/install/)
54
54
- Optional for building the Lambda functions: [Apache Maven 3.9.8](https://maven.apache.org/install.html)
@@ -136,7 +136,7 @@ services:
136
136
Environment Variables:
137
137
-**LOCALSTACK_AUTH_TOKEN**: Required for using LocalStack Pro.
138
138
-**DEBUG**: Set to 1 to enable verbose logging of the container.
139
-
-**EXTENSION_AUTO_INSTALL**: Automatically installs specified LocalStack [extensions](https://docs.localstack.cloud/user-guide/extensions/), in this case, `localstack-extension-terraform-init` which allows Terraform files to be directly used as init hooks.
139
+
-**EXTENSION_AUTO_INSTALL**: Automatically installs specified LocalStack [extensions]({{< ref "/user-guide/extensions/" >}}), in this case, `localstack-extension-terraform-init` which allows Terraform files to be directly used as init hooks.
140
140
141
141
Volumes:
142
142
- Docker Socket: Mounts the Docker socket `/var/run/docker.sock` from the host into the container.
Copy file name to clipboardExpand all lines: content/en/user-guide/aws/apigateway/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ API Gateway supports standard HTTP methods such as `GET`, `POST`, `PUT`, `PATCH`
16
16
LocalStack supports API Gateway V1 in the Community image and API Gateway V2 in the Pro image.
17
17
LocalStack allows you to use the API Gateway APIs to create, deploy, and manage APIs on your local machine to invoke those exposed API endpoints.
18
18
19
-
The supported APIs are available on the API coverage page for [API Gateway V1](https://docs.localstack.cloud/references/coverage/coverage_apigateway/) & [API Gateway V2](https://docs.localstack.cloud/references/coverage/coverage_apigatewayv2/), which provides information on the extent of API Gateway's integration with LocalStack.
19
+
The supported APIs are available on the API coverage page for [API Gateway V1]({{< ref "coverage_apigateway" >}}) & [API Gateway V2]({{< ref "coverage_apigatewayv2" >}}), which provides information on the extent of API Gateway's integration with LocalStack.
Copy file name to clipboardExpand all lines: content/en/user-guide/aws/config/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Config provides a comprehensive view of the resource configuration across your A
13
13
Config continuously records configuration changes and allows you to retain a historical record of these changes.
14
14
15
15
LocalStack allows you to use the Config APIs in your local environment to assesses resource configurations and notifies you of any non-compliant items to mitigate potential security risks.
16
-
The supported APIs are available on our [API coverage page](https://docs.localstack.cloud/references/coverage/coverage_config/), which provides information on the extent of Config's integration with LocalStack.
16
+
The supported APIs are available on our [API coverage page]({{< ref "coverage_config" >}}), which provides information on the extent of Config's integration with LocalStack.
Copy file name to clipboardExpand all lines: content/en/user-guide/aws/dynamodb/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ It offers a flexible and highly scalable way to store and retrieve data, making
11
11
DynamoDB provides a fast and scalable key-value datastore with support for replication, automatic scaling, data encryption at rest, and on-demand backup, among other capabilities.
12
12
13
13
LocalStack allows you to use the DynamoDB APIs in your local environment to manage key-value and document data models.
14
-
The supported APIs are available on our [API coverage page](https://docs.localstack.cloud/references/coverage/coverage_dynamodb/), which provides information on the extent of DynamoDB's integration with LocalStack.
14
+
The supported APIs are available on our [API coverage page]({{< ref "coverage_dynamodb" >}}), which provides information on the extent of DynamoDB's integration with LocalStack.
15
15
16
16
DynamoDB emulation is powered by [DynamoDB Local](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html).
0 commit comments