Skip to content

Commit 25715a8

Browse files
committed
complete as many as possible
1 parent 93a83ab commit 25715a8

File tree

5 files changed

+84
-17
lines changed

5 files changed

+84
-17
lines changed

src/content/docs/aws/integrations/aws-sdks/index.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,19 @@ description: Use LocalStack with AWS SDKs to manage your AWS resources locally.
44
template: doc
55
sidebar:
66
order: 1
7-
---
7+
---
8+
9+
## Introduction
10+
11+
LocalStack integrates with official AWS Software Development Kits (SDKs) so you can connect to LocalStack services using the same SDKs you use for AWS services.
12+
This lets you develop and test your applications locally without connecting to the cloud.
13+
14+
## How to connect with AWS SDKs?
15+
16+
To connect to LocalStack services using AWS SDKs, you can use one of the following methods:
17+
18+
- **Manual configuration:** Manually configure the SDK to connect to LocalStack services by setting the endpoint URL to `http://localhost:4566` or `localhost.localstack.cloud:4566`.
19+
This can also be specified using a [profile or an environment variable](https://docs.aws.amazon.com/sdkref/latest/guide/feature-ss-endpoints.html).
20+
- **Transparent endpoint injection (recommended):** Connect to LocalStack services without modifying your application code.
21+
Transparent endpoint injection uses the integrated DNS server to resolve AWS API calls to target LocalStack.
22+
Refer to the [Transparent Endpoint Injection](/aws/capabilities/networking/transparent-endpoint-injection/) guide for more information.

src/content/docs/aws/tooling/index.md

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Overview
3+
description: Increase your development efficiency with LocalStack Cloud Developer Tools.
4+
template: doc
5+
---
6+
7+
import SectionCards from '../../../../components/SectionCards.astro';
8+
9+
The core of LocalStack is the [cloud service emulation](/aws/services/).
10+
But LocalStack also provides a variety of tools to make your life as a cloud developer easier.
11+
12+
## Tool Categories
13+
14+
<SectionCards
15+
basePath="aws/tooling/"
16+
customTitles={{
17+
"localstack-sdks": "LocalStack SDKs",
18+
"extensions": "Extensions",
19+
"lambda-tools": "Lambda Tools"
20+
}}
21+
/>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Overview
3+
description: Advanced capabilities and features available in LocalStack for Snowflake.
4+
template: doc
5+
---
6+
7+
import SectionCards from '../../../../components/SectionCards.astro';
8+
9+
LocalStack for Snowflake provides advanced capabilities that enhance your development workflow and enable sophisticated testing scenarios beyond basic Snowflake service emulation.
10+
11+
<SectionCards
12+
basePath="snowflake/capabilities/"
13+
useDirectFiles={true}
14+
customTitles={{
15+
"configuration": "Configuration",
16+
"init-hooks": "Initialization Hooks",
17+
"state-management": "State Management"
18+
}}
19+
/>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Overview
3+
description: Use your favorite development tools with LocalStack for Snowflake.
4+
template: doc
5+
---
6+
7+
import SectionCards from '../../../../components/SectionCards.astro';
8+
9+
LocalStack for Snowflake supports a wide range of tools and integrations from the data development ecosystem.
10+
This section covers tools that are officially supported and tested with LocalStack for Snowflake.
11+
12+
<SectionCards
13+
basePath="snowflake/integrations/"
14+
useDirectFiles={true}
15+
customTitles={{
16+
"airflow": "Apache Airflow",
17+
"continuous-integration": "Continuous Integration",
18+
"dbeaver": "DBeaver",
19+
"dbt": "dbt (Data Build Tool)",
20+
"flyway": "Flyway",
21+
"pulumi": "Pulumi",
22+
"snow-cli": "Snowflake CLI",
23+
"snow-sql": "SnowSQL",
24+
"snowflake-drivers": "Snowflake Drivers",
25+
"snowpark": "Snowpark",
26+
"terraform": "Terraform"
27+
}}
28+
/>

0 commit comments

Comments
 (0)