Robert Strauch 3c22c56c05 Upgrade Localstack to 2.3.2 (#949) vor 1 Jahr
..
infrastructure 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
spring-cloud-aws-dynamodb-sample 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
spring-cloud-aws-parameter-store-sample 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
spring-cloud-aws-s3-sample 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
spring-cloud-aws-secrets-manager-sample 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
spring-cloud-aws-ses-sample 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
spring-cloud-aws-sns-sample 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
spring-cloud-aws-sqs-sample 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
.gitignore 288a32efd4 Parameter Store Sample (#17) vor 3 Jahren
.npmignore 288a32efd4 Parameter Store Sample (#17) vor 3 Jahren
docker-compose.yml 3c22c56c05 Upgrade Localstack to 2.3.2 (#949) vor 1 Jahr
pom.xml 4e81e2202b Set version to 3.0.4-SNAPSHOT. (#946) vor 1 Jahr
readme.md 4a0a2b6828 Update docs and labels to use correct casing for LocalStack (#895) vor 1 Jahr

readme.md

Spring Cloud AWS Samples

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

To start LocalStack locally:

$ docker-compose up

Infrastructure

Samples use AWS CDK to create the infrastructure components to run the sample. To deploy infrastructure, you need to install CDK and CDK local:

$ npm install -g aws-cdk-local aws-cdk

Then, in infrastructure directory:

$ mvn package
$ cdklocal bootstrap 
$ cdklocal deploy

How to run?

Samples are regular Spring Boot applications. The best way to run them is to run the main @SpringBootApplication annotated class directly from an IDE.

How to destroy infrastructure?

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

$ cdklocal destroy

How to run against real AWS?

To run samples against real AWS, update spring.cloud.aws properties in sample's application.properties to reflect your AWS configuration or delete these properties completely to use defaults.