-
-
Notifications
You must be signed in to change notification settings - Fork 326
CloudMap support for spring aws applications #95
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
Changes from 27 commits
eb2355f
868cc65
988e322
9a8cabb
26226e3
eeb4027
c954ee0
91fadef
d42734f
330b5eb
7740284
7793d05
46777f1
76e8d43
5433946
99d8951
28c9110
06580db
03091f8
1a9c009
f970318
4f07e3c
7939fed
4339b0a
b34b9fc
a492d72
f1fab5b
4e20c71
8309f9e
a130ec4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ io.awspring.cloud.autoconfigure.messaging.SnsAutoConfiguration,\ | |
io.awspring.cloud.autoconfigure.jdbc.AmazonRdsDatabaseAutoConfiguration,\ | ||
io.awspring.cloud.autoconfigure.metrics.CloudWatchExportAutoConfiguration,\ | ||
io.awspring.cloud.autoconfigure.security.CognitoAuthenticationAutoConfiguration | ||
org.springframework.cloud.client.discovery.EnableDiscoveryClient=\ | ||
org.springframework.cloud.aws.cloudmap.servicediscovery.CloudMapDiscoveryClient | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was not able to see a similar config on spring-cloud-consul. can you point us to it, please? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are right, this is not required. So I have removed it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @eddumelendez,
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.awspring.cloud</groupId> | ||
<artifactId>spring-cloud-aws</artifactId> | ||
<version>2.3.1</version> | ||
</parent> | ||
|
||
<artifactId>spring-cloud-aws-cloudmap</artifactId> | ||
<name>Spring Cloud Cloud Map</name> | ||
<description>Spring Cloud AWS Cloud Map</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-commons</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-autoconfigure</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-context</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-servicediscovery</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-ec2</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-webflux</artifactId> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
</project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be in autoConfigure module if
spring-cloud-starter-aws-cloudmap
module does autoconfiguration?