Skip to content

Commit 5fd0dc1

Browse files
authored
put astro badges for pro and enterprise (#38)
* put astro badges for pro and enterprise * fix build
1 parent 1cd284c commit 5fd0dc1

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

src/content/docs/aws/capabilities/state-management/cloud-pods.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ sidebar:
77
---
88

99
import { Tabs, TabItem, FileTree } from '@astrojs/starlight/components';
10+
import { Badge } from '@astrojs/starlight/components';
1011

1112
## Introduction
1213

@@ -522,7 +523,7 @@ This needs to be done with the `localstack pod remote add ...` command.
522523
This commands creates a configuration file for the remote in the [LocalStack volume directory](/aws/capabilities/config/filesystem/#localstack-volume-directory).
523524
:::
524525

525-
## End-to-End Encryption (Enterprise)
526+
## End-to-End Encryption <Badge text="Enterprise" size="large" />
526527

527528
Cloud Pods artifacts are stored in S3 buckets when using the LocalStack platform as the storage remote.
528529
By default, Amazon S3 encrypts all objects before saving them on disks, while the opposite operation happens at download time.

src/content/docs/aws/integrations/app-frameworks/spring-cloud-function.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ sidebar:
66
order: 4
77
---
88
import { Tabs, TabItem } from '@astrojs/starlight/components';
9+
import { Badge } from '@astrojs/starlight/components';
910

1011
## Overview
1112

@@ -39,7 +40,7 @@ any other JVM setup.
3940
- [Add Request/Response utilities](#add-requestresponse-utilities)
4041
- [Creating a sample Model / DTO](#creating-a-sample-model--dto)
4142
- [Creating Rest API endpoints](#creating-rest-api-endpoints)
42-
- [Cold Start and Warmup (Pro)](#cold-start-and-warmup-pro)
43+
- [Cold Start and Warmup](#cold-start-and-warmup)
4344
- [Creating other lambda Handlers](#creating-other-lambda-handlers)
4445
- [Setting up Deployment](#setting-up-deployment)
4546
- [Testing, Debugging and Hot Reloading](#testing-debugging-and-hot-reloading)
@@ -467,7 +468,7 @@ class SampleApi(private val objectMapper: ObjectMapper) {
467468
Note how we used Spring's dependency injection to inject `ObjectMapper` Bean we
468469
configured earlier.
469470

470-
#### Cold Start and Warmup (Pro)
471+
#### Cold Start and Warmup <Badge text="Pro" size="large" />
471472

472473
We know Java's cold start is always a pain.
473474
To minimize this pain, we will try to define a pre-warming endpoint within the Rest API.

src/content/docs/aws/services/apigateway.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ persistence: supported
66
---
77

88
import FeatureCoverage from "../../../../components/feature-coverage/FeatureCoverage";
9+
import { Badge } from '@astrojs/starlight/components';
910

1011
## Introduction
1112

@@ -327,7 +328,7 @@ http://localhost:4566/restapis/<apiId>/<stageName>/_user_request_/<path>
327328
```
328329
:::
329330

330-
### WebSocket APIs (Pro)
331+
### WebSocket APIs <Badge text="Pro" size="large" />
331332

332333
WebSocket APIs provide real-time communication channels between a client and a server.
333334
To use WebSockets in LocalStack, you can define a WebSocket route in your Serverless configuration:
@@ -423,7 +424,7 @@ Setting the API Gateway ID via `_custom_id_` works only on the creation of the r
423424
Ensure that you set the `_custom_id_` tag on creation of the resource.
424425
:::
425426

426-
## Custom Domain Names with API Gateway (Pro)
427+
## Custom Domain Names with API Gateway <Badge text="Pro" size="large" />
427428

428429
You can use custom domain names with API Gateway [REST APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-custom-domains.html) and [HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-custom-domain-names.html).
429430

src/content/docs/aws/services/cloudwatchlogs.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ persistence: supported
66
---
77

88
import FeatureCoverage from "../../../../components/feature-coverage/FeatureCoverage";
9+
import { Badge } from '@astrojs/starlight/components';
910

1011
## Introduction
1112

@@ -61,7 +62,7 @@ record=$(awslocal kinesis get-records --limit 10 --shard-iterator $shard_iterato
6162
echo $record | base64 -d | zcat
6263
```
6364

64-
## Filter Pattern (Pro only)
65+
## Filter Pattern <Badge text="Pro" size="large" />
6566

6667
[Filter patterns](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/FilterAndPatternSyntax.html) can be used to select certain logs only.
6768

src/content/docs/aws/services/ecs.mdx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description: Get started with Elastic Container Service (ECS) on LocalStack
55
persistence: supported
66
---
77

8+
import { Badge } from '@astrojs/starlight/components';
89
import FeatureCoverage from "../../../../components/feature-coverage/FeatureCoverage";
910

1011
## Introduction
@@ -342,12 +343,7 @@ services:
342343
343344
Alternatively, you can download the image from the private registry before using it or employ an [Initialization Hook](/aws/capabilities/config/initialization-hooks) to install the Docker client and use these credentials to download the image.
344345
345-
## Firelens for ECS Tasks
346-
347-
:::note
348-
Firelens emulation is currently available as part of the **LocalStack Enterprise** plan.
349-
If you'd like to try it out, please [contact us](https://www.localstack.cloud/demo) to request access.
350-
:::
346+
## Firelens for ECS Tasks <Badge text="Enterprise" size="large" />
351347
352348
LocalStack's ECS emulation supports custom log routing via FireLens.
353349
FireLens allows the ECS service to manage the configuration of the logging driver of application containers, and to create the proper configuration for the `fluentbit`/`fluentd` logging layer.

src/content/docs/aws/services/lambda.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ persistence: supported with limitations
66
---
77

88
import FeatureCoverage from "../../../../components/feature-coverage/FeatureCoverage";
9-
9+
import { Badge } from '@astrojs/starlight/components';
1010
import { Tabs, TabItem } from '@astrojs/starlight/components';
1111

1212
## Introduction
@@ -431,7 +431,7 @@ import { Table, TableHeader, TableBody, TableHead, TableRow, TableCell } from '@
431431

432432
Create a [GitHub issue](https://github.com/localstack/localstack/issues/new/choose) or reach out to [LocalStack support](/aws/getting-started/help-support) if you experience any challenges.
433433

434-
## Lambda Layers (Pro)
434+
## Lambda Layers <Badge text="Pro" size="large" />
435435

436436
[Lambda layers](https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html) let you include additional code and dependencies in your Lambda functions.
437437
With a valid LocalStack license, you can deploy Lambda Layers locally to streamline your development and testing process.

0 commit comments

Comments
 (0)