Skip to content

Commit

Permalink
added the autoconfiguration module as a dependency in the starter mod…
Browse files Browse the repository at this point in the history
…ule. Removed redundant dependencies from sample project

Signed-off-by: Oussema Toujani <[email protected]>
  • Loading branch information
Oussema Toujani committed Jul 14, 2024
1 parent 3a041e0 commit 0a519bd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Zalando Cloud AWS is an addition to [Spring Cloud AWS](https://github.com/awspri
This project has dependency and transitive dependency on Spring Projects. The table below outlines the version of Spring Cloud AWS, Spring Cloud, Spring Boot and Spring Framework versions that are compatible with certain Zalando Cloud AWS versions.

| Zalando Cloud AWS | Spring Cloud AWS | Spring Boot | Spring Framework | AWS Java SDK |
| ----------------- | ---------------- | ----------- | ---------------- | ------------ |
|-------------------|------------------|-------------|------------------|--------------|
| 3.1.x | 3.1.x | 3.2.x | 6.1.x | 2.x |

## Supported AWS integrations

| AWS Service | Zalando Cloud AWS 3.x |
| ----------- | --------------------- |
| KMS ||
|-------------|-----------------------|
| KMS | |

Note that Spring Cloud AWS and Spring Cloud provide support for other AWS services in their projects.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Startup localstack with KMS
docker run -d --name localstack -p 4566:4566 -p 4510-4559:4510-4559 localstack/localstack
```

Create customer-managed key and note down KeyId from the AWS CLI output
Create customer-managed key and **note down the KeyId** from the AWS CLI output

```bash
aws --endpoint-url http://localhost:4566 kms create-key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,10 @@
<artifactId>spring-cloud-aws-starter</artifactId>
<version>${awsspring.version}</version>
</dependency>

<dependency>
<groupId>org.zalando.awspring.cloud</groupId>
<artifactId>zalando-cloud-aws-kms</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.zalando.awspring.cloud</groupId>
<artifactId>zalando-cloud-aws-autoconfigure</artifactId>
<artifactId>zalando-cloud-aws-starter-kms</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

<modelVersion>4.0.0</modelVersion>

<groupId>org.zalando.awspring.cloud</groupId>
<artifactId>zalando-cloud-aws-starter-kms</artifactId>
<name>Zalando Cloud AWS KMS Starter</name>
<description>Zalando Cloud AWS Key Management Service Starter</description>
Expand All @@ -23,6 +22,11 @@
<groupId>io.awspring.cloud</groupId>
<artifactId>spring-cloud-aws-starter</artifactId>
</dependency>
<dependency>
<groupId>org.zalando.awspring.cloud</groupId>
<artifactId>zalando-cloud-aws-autoconfigure</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.zalando.awspring.cloud</groupId>
<artifactId>zalando-cloud-aws-kms</artifactId>
Expand Down

0 comments on commit 0a519bd

Please sign in to comment.