Maciej Walkowiak 9116c28311 Back to snapshots (#1122) | 7 months ago | |
---|---|---|
.. | ||
infrastructure | 7 months ago | |
spring-cloud-aws-dynamodb-sample | 7 months ago | |
spring-cloud-aws-parameter-store-sample | 7 months ago | |
spring-cloud-aws-s3-sample | 7 months ago | |
spring-cloud-aws-secrets-manager-sample | 7 months ago | |
spring-cloud-aws-ses-sample | 7 months ago | |
spring-cloud-aws-sns-sample | 7 months ago | |
spring-cloud-aws-sqs-sample | 7 months ago | |
.gitignore | 3 years ago | |
.npmignore | 3 years ago | |
docker-compose.yml | 8 months ago | |
pom.xml | 7 months ago | |
readme.md | 1 year ago |
Samples are prepared to run on LocalStack - a local equivalent of AWS.
To start LocalStack locally:
$ docker-compose up
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
Samples are regular Spring Boot applications. The best way to run them is to run the main @SpringBootApplication
annotated class directly from an IDE.
Infrastructure is destroyed once LocalStack container shuts down. If you want to destroy infrastructure manually, run:
$ cdklocal destroy
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.