-
Notifications
You must be signed in to change notification settings - Fork 34
Restructure some pages to create new "Connecting" section #633
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| --- | ||
| title: Overview | ||
| description: Use the LocalStack web app as a local equivalent of the AWS Console to inspect and manage resources running on LocalStack. | ||
| template: doc | ||
| editUrl: false | ||
| sidebar: | ||
| order: 1 | ||
| --- | ||
|
|
||
| import SectionCards from '../../../../../components/SectionCards.astro'; | ||
|
|
||
| If you use the AWS Console today to inspect resources, navigate stacks, or check on your environment, the LocalStack web app gives you the same kind of view for the resources running on your LocalStack instance. Sign in once, and you can browse and manage your local AWS resources without leaving the browser. | ||
|
|
||
| <SectionCards | ||
| basePath="aws/connecting/console/" | ||
| useDirectFiles={true} | ||
| /> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| --- | ||
| title: AWS Toolkit for VS Code | ||
| description: Use the AWS Toolkit for VS Code to browse and operate on AWS resources running on LocalStack. | ||
| template: doc | ||
| sidebar: | ||
| order: 2 | ||
| --- | ||
|
|
||
| ## Introduction | ||
|
|
||
| The [AWS Toolkit for VS Code](https://docs.aws.amazon.com/toolkit-for-vscode/) is an Amazon-maintained extension for Visual Studio Code that lets you interact with AWS resources directly from the editor. | ||
|
|
||
| When configured with a `localstack` profile, the AWS Toolkit operates against your local LocalStack instance instead of a real AWS account, giving you the same AWS-style resource browser experience you already use against AWS. | ||
|
|
||
| ## AWS Explorer | ||
|
|
||
| Once installed, the AWS Toolkit adds an **AWS Explorer** view to the VS Code activity bar. Selecting the `localstack` profile points the Explorer at your local LocalStack instance, where you can browse the resources you have provisioned. | ||
|
|
||
|  | ||
|
|
||
| For installation, profile setup, and the full set of features the AWS Toolkit provides, see the [AWS Toolkit for VS Code User Guide](https://docs.aws.amazon.com/toolkit-for-vscode/). |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,17 @@ | ||||||
| --- | ||||||
| title: Overview | ||||||
| description: Connect to LocalStack from your IDE — install, configure, run, and inspect LocalStack without leaving your editor. | ||||||
| template: doc | ||||||
| editUrl: false | ||||||
| sidebar: | ||||||
| order: 1 | ||||||
| --- | ||||||
|
|
||||||
| import SectionCards from '../../../../../components/SectionCards.astro'; | ||||||
|
|
||||||
| Use IDE extensions to install, configure, run, and inspect LocalStack alongside the code you are developing — without leaving your editor. The LocalStack Toolkit manages the LocalStack lifecycle from VS Code, and the AWS Toolkit for VS Code lets you browse and operate on the resources running on your LocalStack instance from a familiar AWS-style explorer. | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| <SectionCards | ||||||
| basePath="aws/connecting/ides/" | ||||||
| useDirectFiles={true} | ||||||
| /> | ||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,23 @@ | ||||||
| --- | ||||||
| title: Overview | ||||||
| description: Connect to LocalStack using the same AWS tools you already use — CLI, SDKs, IaC, the web console, and IDE integrations. | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| template: doc | ||||||
| editUrl: false | ||||||
| sidebar: | ||||||
| order: 1 | ||||||
| --- | ||||||
|
|
||||||
| import SectionCards from '../../../../components/SectionCards.astro'; | ||||||
|
|
||||||
| If you already run an application on AWS, you almost certainly connect to it through familiar tools — the AWS CLI, an AWS SDK, an Infrastructure as Code tool such as Terraform or AWS CDK, or an IDE plugin. Running that same application against LocalStack means continuing to use those tools; you only need to point them at LocalStack instead of AWS. | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| <SectionCards | ||||||
| basePath="aws/connecting/" | ||||||
| customTitles={{ | ||||||
| "aws-cli": "AWS CLI", | ||||||
| "aws-sdks": "AWS SDKs", | ||||||
| "console": "LocalStack Console", | ||||||
| "infrastructure-as-code": "Infrastructure as Code", | ||||||
| "ides": "IDE Extensions", | ||||||
| }} | ||||||
| /> | ||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| --- | ||
| title: Overview | ||
| description: Deploy resources to LocalStack using the same Infrastructure as Code tools you already use against AWS. | ||
| template: doc | ||
| editUrl: false | ||
| sidebar: | ||
| order: 1 | ||
| --- | ||
|
|
||
| import SectionCards from '../../../../../components/SectionCards.astro'; | ||
|
|
||
| If you provision AWS resources with an Infrastructure as Code (IaC) tool today, you can keep using the same templates, modules, and stacks against LocalStack. Each integration shows how to point your IaC tool at LocalStack so the resources are created locally instead of in your AWS account. | ||
|
|
||
| <SectionCards | ||
| basePath="aws/connecting/infrastructure-as-code/" | ||
| useDirectFiles={true} | ||
| /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.