Skip to content

Commit f8af7b0

Browse files
committed
remaining folders done
1 parent 5f636c8 commit f8af7b0

File tree

5 files changed

+6
-14
lines changed

5 files changed

+6
-14
lines changed

src/content/docs/aws/integrations/app-frameworks/quarkus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ All the other configuration properties can be overridden at runtime.
140140
| `quarkus.aws.devservices.localstack.additional-services."additional-services".service-name` | string | `localstack` |
141141
| `quarkus.aws.devservices.localstack.additional-services."additional-services".container-properties` | `Map<String,String>` | |
142142

143-
{{< callout >}}
143+
:::note
144144
- If `quarkus.aws.devservices.localstack.additional-services."additional-services".enabled` is set to `true` and the endpoint-override is not configured, LocalStack will be started and utilized instead of the provided configuration.
145145
For all services excluding Cognito, LocalStack will function as the core cloud emulator.
146146
In the case of Cognito, the emulation/mocking will be done by Moto.
@@ -155,7 +155,7 @@ All the other configuration properties can be overridden at runtime.
155155
Otherwise, it creates a new container with the `quarkus-dev-service-localstack` label set to the specified value.
156156
In test mode, Dev Services groups services with the same service-name value into a single container instance.
157157
This property is useful when there's a requirement for multiple shared LocalStack instances.
158-
{{< /callout >}}
158+
:::
159159

160160
### Specific configuration
161161

src/content/docs/aws/integrations/messaging/selfmanaged-kafka-cluster.mdx renamed to src/content/docs/aws/integrations/messaging/selfmanaged-kafka-cluster.md

File renamed without changes.

src/content/docs/aws/integrations/testing/hyperexecute.mdx

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/content/docs/aws/integrations/testing/lambdatest-hyperexecute.mdx renamed to src/content/docs/aws/integrations/testing/lambdatest-hyperexecute.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ It supports a wide range of testing frameworks and integrates seamlessly with CI
1111
You can use HyperExecute to run your LocalStack tests on your local machine or in the CI pipeline using a single configuration file.
1212

1313
:::note
14-
1514
LambdaTest provides specialized runners for LocalStack.
1615
The default runners don't provide a Docker socket, which is required for LocalStack to work properly.
1716
If you want to use LocalStack with HyperExecute, you need to get in touch with the LambdaTest team to get access to the specialized runners.
@@ -51,7 +50,6 @@ pre:
5150
The above minimal configuration file starts LocalStack and creates an S3 bucket, SQS queue, and SNS topic.
5251
5352
:::note
54-
5553
To use the LocalStack Pro image, configure a LocalStack Auth Token by appending `LOCALSTACK_AUTH_TOKEN=${{ .secrets.LOCALSTACK_AUTH_TOKEN }}` to the `localstack start` command.
5654
Subsequently, you need to add your LocalStack Auth Token to your HyperExecute Portal as a secret.
5755
:::

src/content/docs/aws/integrations/testing/testcontainers.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ using var client = new AmazonS3Client(config);
9999
```
100100
</TabItem>
101101
<TabItem label="Go">
102-
```go
102+
```go showLineNumbers
103103
func s3Client(ctx context.Context, l *localstack.LocalStackContainer) (*s3.Client, error) {
104104
// the Testcontainers Docker provider is used to get the host of the Docker daemon
105105
provider, err := testcontainers.NewDockerProvider()
@@ -150,8 +150,10 @@ S3Client s3 = S3Client.builder()
150150
.credentialsProvider(StaticCredentialsProvider.create(AwsBasicCredentials.create(localstack.getAccessKey(), localstack.getSecretKey())))
151151
.region(Region.of(localstack.getRegion()))
152152
.build();
153+
```
153154
</TabItem>
154-
{{< tab header="NodeJS (typescript)" lang="typescript">}}
155+
<TabItem label="NodeJS (typescript)">
156+
```typescript
155157
const awsConfig = {
156158
endpoint: localstack.getConnectionUri(),
157159
credentials: {
@@ -183,7 +185,6 @@ The Testcontainer can be created like this:
183185
public LocalStackContainer localstack = new LocalStackContainer(DockerImageName("localstack/localstack:2.0.0"))
184186
.withExposedPorts(4510, 4511, 4512, 4513, 4514) // the port can have any value between 4510-4559, but LS starts from 4510
185187
.withEnv("LOCALSTACK_AUTH_TOKEN", auth_token); // add your Auth Token here
186-
187188
```
188189

189190
To find the exposed port which you can use to connect to the instance:

0 commit comments

Comments
 (0)