Skip to content

Commit

Permalink
Update docs and labels to use correct casing for LocalStack (#895)
Browse files Browse the repository at this point in the history
  • Loading branch information
tinyg210 authored Oct 23, 2023
1 parent 0ee11d2 commit 4a0a2b6
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For a deep dive into the project, refer to the Spring Cloud AWS documentation:

## Sponsors

Big thanks to [Localstack](https://localstack.cloud) for providing PRO licenses to the development team!
Big thanks to [LocalStack](https://localstack.cloud) for providing PRO licenses to the development team!

<a href="https://localstack.cloud"><img src="https://user-images.githubusercontent.com/47351025/215054012-f5af0761-0bd5-49c6-bd3e-c6b2a6844f53.png" height="100" /></a>

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/core.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class CustomRegionProviderConfiguration {

=== Endpoint

To simplify using services with AWS compatible APIs, or running applications against https://localstack.cloud/[Localstack], it is possible to configure an endpoint set on all auto-configured AWS clients:
To simplify using services with AWS compatible APIs, or running applications against https://localstack.cloud/[LocalStack], it is possible to configure an endpoint set on all auto-configured AWS clients:

[cols="3*", options="header"]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import software.amazon.awssdk.services.s3.waiters.S3Waiter;

/**
* Unit tests for {@link CrossRegionS3Client}. Integration testing with Localstack is not possible due to:
* Unit tests for {@link CrossRegionS3Client}. Integration testing with LocalStack is not possible due to:
* <a href="https://github.com/localstack/localstack/issues/5748">...</a>
*
* @author Maciej Walkowiak
Expand Down
6 changes: 3 additions & 3 deletions spring-cloud-aws-samples/readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Spring Cloud AWS Samples

Samples are prepared to run on Localstack - a local equivalent of AWS.
Samples are prepared to run on LocalStack - a local equivalent of AWS.

To start Localstack locally:
To start LocalStack locally:

```
$ docker-compose up
Expand Down Expand Up @@ -30,7 +30,7 @@ Samples are regular Spring Boot applications. The best way to run them is to run

## How to destroy infrastructure?

Infrastructure is destroyed once Localstack container shuts down. If you want to destroy infrastructure manually, run:
Infrastructure is destroyed once LocalStack container shuts down. If you want to destroy infrastructure manually, run:

```
$ cdklocal destroy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localstack configuration
# LocalStack configuration
spring.cloud.aws.endpoint=http://localhost:4566
spring.cloud.aws.region.static=us-east-1
spring.cloud.aws.credentials.access-key=noop
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
spring.config.import=aws-parameterstore:/config/spring/
logging.level.io.awspring.cloud=debug

# Localstack configuration
# LocalStack configuration
spring.cloud.aws.endpoint=http://localhost:4566
spring.cloud.aws.region.static=us-east-1
spring.cloud.aws.credentials.access-key=noop
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localstack configuration
# LocalStack configuration
spring.cloud.aws.endpoint=http://localhost:4566
spring.cloud.aws.region.static=us-east-1
spring.cloud.aws.credentials.access-key=noop
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
spring.config.import: aws-secretsmanager:/secrets/spring-cloud-aws-sample-app
logging.level.io.awspring.cloud.secretsmanager: debug

# Localstack configuration
# LocalStack configuration
spring.cloud.aws.endpoint: http://localhost:4566
spring.cloud.aws.region.static: us-east-1
spring.cloud.aws.credentials.access-key: noop
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localstack configuration
# LocalStack configuration
spring.cloud.aws.endpoint=http://localhost:4566
spring.cloud.aws.region.static=us-east-1
spring.cloud.aws.credentials.access-key=noop
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localstack configuration
# LocalStack configuration
spring.cloud.aws.endpoint=http://localhost:4566
spring.cloud.aws.region.static=us-east-1
spring.cloud.aws.credentials.access-key=noop
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localstack configuration
# LocalStack configuration
spring.cloud.aws.endpoint=http://localhost:4566
spring.cloud.aws.region.static=us-east-1
spring.cloud.aws.credentials.access-key=noop
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static synchronized void beforeAll() {

@DynamicPropertySource
static void registerSqsProperties(DynamicPropertyRegistry registry) {
// overwrite SQS endpoint with one provided by Localstack
// overwrite SQS endpoint with one provided by LocalStack
registry.add("spring.cloud.aws.endpoint", () -> localstack.getEndpointOverride(SQS).toString());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static void beforeAll() throws IOException, InterruptedException {

@DynamicPropertySource
static void registerSqsProperties(DynamicPropertyRegistry registry) {
// overwrite SQS endpoint with one provided by Localstack
// overwrite SQS endpoint with one provided by LocalStack
registry.add("spring.cloud.aws.sqs.endpoint", () -> localstack.getEndpointOverride(SQS).toString());
}

Expand Down

0 comments on commit 4a0a2b6

Please sign in to comment.