Skip to content

Commit

Permalink
Going back to snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
spring-builds committed Feb 11, 2021
1 parent ddc281c commit 1bacf4f
Show file tree
Hide file tree
Showing 20 changed files with 38 additions and 314 deletions.
3 changes: 1 addition & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ Manual changes to this file will be lost when it is generated again.
Edit the files in the src/main/asciidoc/ directory instead.
////


= Spring Cloud for Amazon Web Services

Spring Cloud for Amazon Web Services, part of the Spring Cloud umbrella project, eases the integration with hosted Amazon Web Services. It offers a convenient way to interact with AWS provided services using well-known Spring idioms and APIs, such as the messaging or caching API. Developers can build their application around the hosted services without having to care about infrastructure or maintenance.
Expand Down Expand Up @@ -117,7 +116,7 @@ configuration settings will automatically execute the integration tests.
To build with the integration tests you must execute

-----------------------------------------------------------------------------------------------------
mvn verify -Dels.config.dir=/Users/foo/config/dir
mvn verify -Dels.config.dir=/Users/foo/config/dir -DrdsPassword=<password from access.properties file>
(on windows you will also need a leading slash before the drive letter e.g. /C:/users/foo/config/dir)
-----------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-aws</artifactId>
<version>2.2.6.RELEASE</version>
<version>2.2.6.BUILD-SNAPSHOT</version>
</parent>
<artifactId>spring-cloud-aws-docs</artifactId>
<packaging>pom</packaging>
Expand Down
36 changes: 17 additions & 19 deletions docs/src/main/asciidoc/_configprops.adoc
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
|===
|Name | Default | Description

|aws.paramstore.default-context | `application` |
|aws.paramstore.enabled | `true` | Is AWS Parameter Store support enabled.
|aws.paramstore.fail-fast | `true` | Throw exceptions during config lookup if true, otherwise, log warnings.
|aws.paramstore.default-context | application |
|aws.paramstore.enabled | true | Is AWS Parameter Store support enabled.
|aws.paramstore.fail-fast | true | Throw exceptions during config lookup if true, otherwise, log warnings.
|aws.paramstore.name | | Alternative to spring.application.name to use in looking up values in AWS Parameter Store.
|aws.paramstore.prefix | `/config` | Prefix indicating first level for every property. Value must start with a forward slash followed by a valid path segment or be empty. Defaults to "/config".
|aws.paramstore.profile-separator | `_` |
|aws.paramstore.region | | If region value is not null or empty it will be used in creation of AWSSimpleSystemsManagement.
|aws.secretsmanager.default-context | `application` |
|aws.secretsmanager.enabled | `true` | Is AWS Secrets Manager support enabled.
|aws.secretsmanager.fail-fast | `true` | Throw exceptions during config lookup if true, otherwise, log warnings.
|aws.paramstore.prefix | /config | Prefix indicating first level for every property. Value must start with a forward slash followed by a valid path segment or be empty. Defaults to "/config".
|aws.paramstore.profile-separator | _ |
|aws.secretsmanager.default-context | application |
|aws.secretsmanager.enabled | true | Is AWS Secrets Manager support enabled.
|aws.secretsmanager.fail-fast | true | Throw exceptions during config lookup if true, otherwise, log warnings.
|aws.secretsmanager.name | | Alternative to spring.application.name to use in looking up values in AWS Secrets Manager.
|aws.secretsmanager.prefix | `/secret` | Prefix indicating first level for every property. Value must start with a forward slash followed by a valid path segment or be empty. Defaults to "/config".
|aws.secretsmanager.profile-separator | `_` |
|aws.secretsmanager.region | | If region value is not null or empty it will be used in creation of AWSSecretsManager.
|aws.secretsmanager.prefix | /secret | Prefix indicating first level for every property. Value must start with a forward slash followed by a valid path segment or be empty. Defaults to "/config".
|aws.secretsmanager.profile-separator | _ |
|cloud.aws.credentials.access-key | | The access key to be used with a static provider.
|cloud.aws.credentials.instance-profile | `true` | Configures an instance profile credentials provider with no further configuration.
|cloud.aws.credentials.instance-profile | true | Configures an instance profile credentials provider with no further configuration.
|cloud.aws.credentials.profile-name | | The AWS profile name.
|cloud.aws.credentials.profile-path | | The AWS profile path.
|cloud.aws.credentials.secret-key | | The secret key to be used with a static provider.
|cloud.aws.credentials.use-default-aws-credentials-chain | `false` | Use the DefaultAWSCredentials Chain instead of configuring a custom credentials chain.
|cloud.aws.loader.core-pool-size | `1` | The core pool size of the Task Executor used for parallel S3 interaction. @see org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor#setCorePoolSize(int)
|cloud.aws.credentials.use-default-aws-credentials-chain | false | Use the DefaultAWSCredentials Chain instead of configuring a custom credentials chain.
|cloud.aws.loader.core-pool-size | 1 | The core pool size of the Task Executor used for parallel S3 interaction. @see org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor#setCorePoolSize(int)
|cloud.aws.loader.max-pool-size | | The maximum pool size of the Task Executor used for parallel S3 interaction. @see org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor#setMaxPoolSize(int)
|cloud.aws.loader.queue-capacity | | The maximum queue capacity for backed up S3 requests. @see org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor#setQueueCapacity(int)
|cloud.aws.region.auto | `true` | Enables automatic region detection based on the EC2 meta data service.
|cloud.aws.region.auto | true | Enables automatic region detection based on the EC2 meta data service.
|cloud.aws.region.static | |
|cloud.aws.region.use-default-aws-region-chain | `false` | Whether default AWS SDK region provider chain should be used when auto is set to true.
|cloud.aws.stack.auto | `true` | Enables the automatic stack name detection for the application.
|cloud.aws.region.use-default-aws-region-chain | false | Whether default AWS SDK region provider chain should be used when auto is set to true.
|cloud.aws.stack.auto | true | Enables the automatic stack name detection for the application.
|cloud.aws.stack.name | | The name of the manually configured stack name that will be used to retrieve the resources.

|===
|===
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>2.3.2.RELEASE</version>
<version>2.3.1.RELEASE</version>
<relativePath/><!-- lookup parent from repository -->
</parent>

<artifactId>spring-cloud-aws</artifactId>
<version>2.2.6.RELEASE</version>
<version>2.2.6.BUILD-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Cloud AWS</name>
<description>Spring Cloud AWS</description>
Expand All @@ -48,7 +48,7 @@
<javax-mail.version>1.5.5</javax-mail.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
<javax.activation.version>1.2.0</javax.activation.version>
<spring-cloud-commons.version>2.2.7.RELEASE</spring-cloud-commons.version>
<spring-cloud-commons.version>2.2.7.BUILD-SNAPSHOT</spring-cloud-commons.version>
</properties>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-aws-actuator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-aws</artifactId>
<version>2.2.6.RELEASE</version>
<version>2.2.6.BUILD-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-aws-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-aws</artifactId>
<version>2.2.6.RELEASE</version>
<version>2.2.6.BUILD-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-aws-context/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-aws</artifactId>
<version>2.2.6.RELEASE</version>
<version>2.2.6.BUILD-SNAPSHOT</version>
</parent>

<artifactId>spring-cloud-aws-context</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-aws-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-aws</artifactId>
<version>2.2.6.RELEASE</version>
<version>2.2.6.BUILD-SNAPSHOT</version>
</parent>

<artifactId>spring-cloud-aws-core</artifactId>
Expand Down
Loading

0 comments on commit 1bacf4f

Please sign in to comment.