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
10 changes: 6 additions & 4 deletions public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
/user-guide/integrations/terraform/ /aws/connecting/infrastructure-as-code/terraform/ 301
/user-guide/aws/es/ /aws/services/es/ 301
/references/coverage/coverage_dms/ /aws/services/dms/ 301
/user-guide/extensions/developing-extensions/ /aws/customization/integrations/extensions/developing-extensions/ 301
/user-guide/extensions/developing-extensions/ /aws/customization/integrations/extensions/ 301
/user-guide/security-testing/explainable-iam/ /aws/developer-tools/security-testing/explainable-iam/ 301
/user-guide/aws/ram/ /aws/services/ram/ 301
/references/coverage/coverage_ssm/ /aws/services/ssm/ 301
Expand Down Expand Up @@ -618,7 +618,7 @@
/user-guide/integrations/terraform /aws/connecting/infrastructure-as-code/terraform/ 301
/user-guide/aws/es /aws/services/es/ 301
/references/coverage/coverage_dms /aws/services/dms/ 301
/user-guide/extensions/developing-extensions /aws/customization/integrations/extensions/developing-extensions/ 301
/user-guide/extensions/developing-extensions /aws/customization/integrations/extensions/ 301
/user-guide/security-testing/explainable-iam /aws/developer-tools/security-testing/explainable-iam/ 301
/user-guide/aws/ram /aws/services/ram/ 301
/references/coverage/coverage_ssm /aws/services/ssm/ 301
Expand Down Expand Up @@ -910,8 +910,10 @@
/aws/tooling/extensions/ /aws/customization/integrations/extensions/ 301
/aws/tooling/extensions/mailhog /aws/customization/integrations/extensions/mailhog/ 301
/aws/tooling/extensions/mailhog/ /aws/customization/integrations/extensions/mailhog/ 301
/aws/tooling/extensions/developing-extensions /aws/customization/integrations/extensions/developing-extensions/ 301
/aws/tooling/extensions/developing-extensions/ /aws/customization/integrations/extensions/developing-extensions/ 301
/aws/tooling/extensions/developing-extensions /aws/customization/integrations/extensions/ 301
/aws/tooling/extensions/developing-extensions/ /aws/customization/integrations/extensions/ 301
/aws/customization/integrations/extensions/developing-extensions /aws/customization/integrations/extensions/ 301
/aws/customization/integrations/extensions/developing-extensions/ /aws/customization/integrations/extensions/ 301
/aws/tooling/extensions/managing-extensions /aws/customization/integrations/extensions/managing-extensions/ 301
/aws/tooling/extensions/managing-extensions/ /aws/customization/integrations/extensions/managing-extensions/ 301
/aws/capabilities/web-app/app-inspector /aws/developer-tools/app-inspector/ 301
Expand Down
Binary file removed public/images/aws/extension-installer.png
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/generate_extensions_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def generate_documentation(extensions: list[Extension]) -> str:
"localstack extensions install <extension-name>",
"```",
"",
"See [Managing extensions](/aws/tooling/extensions/managing-extensions) for more details "
"See [Managing extensions](/aws/customization/integrations/extensions/managing-extensions/) for more details "
"on installing, listing, and removing extensions.",
"",
":::note",
Expand Down
2 changes: 1 addition & 1 deletion scripts/redirects/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
/user-guide/integrations/terraform/ /aws/integrations/infrastructure-as-code/terraform 301
/user-guide/aws/es/ /aws/services/es 301
/references/coverage/coverage_dms/ /aws/services/dms 301
/user-guide/extensions/developing-extensions/ /aws/tooling/extensions/developing-extensions 301
/user-guide/extensions/developing-extensions/ /aws/customization/integrations/extensions/ 301
/user-guide/security-testing/explainable-iam/ /aws/capabilities/security-testing/explainable-iam 301
/user-guide/aws/ram/ /aws/services/ram 301
/references/coverage/coverage_ssm/ /aws/services/ssm 301
Expand Down
2 changes: 1 addition & 1 deletion scripts/redirects/redirects_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@
},
{
"old_link": "/user-guide/extensions/developing-extensions/",
"new_link": "/aws/tooling/extensions/developing-extensions",
"new_link": "/aws/customization/integrations/extensions/",
"status_code": 301
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,6 @@ To learn more about these configuration options, see [Cloud Pods](/aws/developer
| Variable | Example Values | Description |
| - | - | - |
| `EXTENSION_AUTO_INSTALL` | | Install a list of extensions automatically at startup. Comma-separated list of extensions directives which will be installed automatically at startup (see [managing extensions](/aws/customization/integrations/extensions/managing-extensions#automating-extensions-installation))|
| `EXTENSION_DEV_MODE` | `0` (default) \| `1` | Enables development mode for extensions. Refer to the [Extensions Development Guide](/aws/customization/integrations/extensions/developing-extensions) for more information. |

## Miscellaneous

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,12 @@ sidebar:
tags: ['Hobby']
---

LocalStack Extensions let you customize and extend LocalStack's core functionality by running additional logic and services inside the same container. This feature is available across all LocalStack plans, and is ideal for teams that want deeper control over how LocalStack behaves during development or testing.
LocalStack Extensions add services and integrations to your LocalStack container. This feature is available across all LocalStack plans.

You can use LocalStack Extensions to:

- Start custom services alongside LocalStack in the same container (see our [Cloudflare Workers Extension](https://localstack.cloud/blog/2023-06-26-develop-your-cloudflare-workers-aws-apps-locally-with-localstack-miniflare/))

- Intercept AWS requests with additional information before they reach your Lambda functions

- Log API calls to custom external backends or monitoring systems

The Extensions API makes it easy to integrate your own logic or extend existing services, all within LocalStack’s runtime.

Officially supported extensions are available in our [Official Extensions Library](https://app.localstack.cloud/extensions/library).
You can find supported extensions in the [Official Extensions Library](https://app.localstack.cloud/extensions/library).

:::tip
Want to try out a common LocalStack extension?

Our [MailHog tutorial](/aws/customization/integrations/extensions/mailhog) teaches you how to install and use the official MailHog extension. It’s a quick way to explore how extensions work in LocalStack.
:::

:::note
The feature and the API are currently in preview stage and may be subject to change.
Please report any issues or feature requests on [LocalStack Extension's GitHub repository](https://github.com/localstack/localstack-extensions).
:::
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,3 @@ You should see the email you sent in the MailHog UI.
- Explore our collection of official extensions, along with a growing ecosystem of third-party extensions, in our [Extensions Library](https://app.localstack.cloud/extensions/library).
- Learn about the various methods for extension management and automating their installation when using LocalStack in a CI environment.
Get detailed insights from our [Managing Extensions](/aws/customization/integrations/extensions/managing-extensions) guide.
- Want to create your own extensions?
Dive into our guide on [Developing Extensions](/aws/customization/integrations/extensions/developing-extensions) for step-by-step instructions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ Options:
-h, --help Show this message and exit

Commands:
dev Developer tools for developing LocalStack extensions
init Initialize the LocalStack extensions environment
install Install a LocalStack extension
list List installed extension
Expand Down
Loading
Loading