Skip to content

Commit 6095227

Browse files
committed
put astro badges for pro and enterprise
1 parent 1cd284c commit 6095227

File tree

6 files changed

+9
-14
lines changed

6 files changed

+9
-14
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ This needs to be done with the `localstack pod remote add ...` command.
522522
This commands creates a configuration file for the remote in the [LocalStack volume directory](/aws/capabilities/config/filesystem/#localstack-volume-directory).
523523
:::
524524

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

527527
Cloud Pods artifacts are stored in S3 buckets when using the LocalStack platform as the storage remote.
528528
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ any other JVM setup.
3939
- [Add Request/Response utilities](#add-requestresponse-utilities)
4040
- [Creating a sample Model / DTO](#creating-a-sample-model--dto)
4141
- [Creating Rest API endpoints](#creating-rest-api-endpoints)
42-
- [Cold Start and Warmup (Pro)](#cold-start-and-warmup-pro)
42+
- [Cold Start and Warmup](#cold-start-and-warmup)
4343
- [Creating other lambda Handlers](#creating-other-lambda-handlers)
4444
- [Setting up Deployment](#setting-up-deployment)
4545
- [Testing, Debugging and Hot Reloading](#testing-debugging-and-hot-reloading)
@@ -467,7 +467,7 @@ class SampleApi(private val objectMapper: ObjectMapper) {
467467
Note how we used Spring's dependency injection to inject `ObjectMapper` Bean we
468468
configured earlier.
469469

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

472472
We know Java's cold start is always a pain.
473473
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ http://localhost:4566/restapis/<apiId>/<stageName>/_user_request_/<path>
327327
```
328328
:::
329329

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

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

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

428428
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).
429429

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ record=$(awslocal kinesis get-records --limit 10 --shard-iterator $shard_iterato
6161
echo $record | base64 -d | zcat
6262
```
6363

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

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

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -342,12 +342,7 @@ services:
342342
343343
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.
344344
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-
:::
345+
## Firelens for ECS Tasks <Badge text="Enterprise" size="large" />
351346
352347
LocalStack's ECS emulation supports custom log routing via FireLens.
353348
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)