-
Notifications
You must be signed in to change notification settings - Fork 19
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
[JENKINS-73644] Use AWS SDK for Java 2.x #93
base: master
Are you sure you want to change the base?
Conversation
...main/java/io/jenkins/plugins/aws/global_configuration/CredentialsAwsGlobalConfiguration.java
Outdated
Show resolved
Hide resolved
for (Regions s : Regions.values()) { | ||
regions.add(s.getDescription(), s.getName()); | ||
for (Region s : Region.regions()) { | ||
regions.add(s.id(), s.id()); |
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.
Technically a change in behavior, as observed in the UI which now lacks region descriptions. Perhaps we could get these from the EC2 DescribeRegions
API, although that requires read access. Or maybe this does not matter and we could dispense with displaying the region descriptions in the UI?
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>aws-credentials</artifactId> | ||
<!-- TODO https://github.com/jenkinsci/aws-credentials-plugin/pull/254 --> |
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.
ef8e7f4
to
12cf5eb
Compare
Tested in context with
artifact-manager-s3
plugin. Ran a Pipeline job and confirmed the artifact was uploaded to S3. Clicked on the "Validate S3 bucket configuration" button and verified that the validation succeeded against my S3 bucket.