Skip to content
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

Update docs and labels to use correct casing for LocalStack #895

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading