-
Notifications
You must be signed in to change notification settings - Fork 694
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-72643: Fixed listing regions when using ec2 ARN role with instance profile #957
Open
craigcomstock
wants to merge
1
commit into
jenkinsci:master
Choose a base branch
from
craigcomstock:JENKINS-72643-list-regions-with-ec2-instance-profile
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -185,14 +185,20 @@ | |
public ListBoxModel doFillRegionItems( | ||
@QueryParameter String altEC2Endpoint, | ||
@QueryParameter boolean useInstanceProfileForCredentials, | ||
@QueryParameter String roleArn, | ||
@QueryParameter String roleSessionName, | ||
@QueryParameter String region, | ||
@QueryParameter String credentialsId) | ||
|
||
throws IOException, ServletException { | ||
ListBoxModel model = new ListBoxModel(); | ||
if (Jenkins.get().hasPermission(Jenkins.ADMINISTER)) { | ||
try { | ||
AWSCredentialsProvider credentialsProvider = createCredentialsProvider(useInstanceProfileForCredentials, | ||
credentialsId); | ||
credentialsId, | ||
roleArn, | ||
roleSessionName, | ||
region); | ||
AmazonEC2 client = AmazonEC2Factory.getInstance().connect(credentialsProvider, determineEC2EndpointURL(altEC2Endpoint)); | ||
DescribeRegionsResult regions = client.describeRegions(); | ||
List<Region> regionList = regions.getRegions(); | ||
|
@@ -201,6 +207,7 @@ | |
model.add(name, name); | ||
} | ||
} catch (SdkClientException ex) { | ||
LOGGER.log(Level.INFO, "AmazonEC2Cloud.doFillRegionItems() got exception: " + ex); | ||
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 thinking I would change this message to incorporate the comment about this may happen before credentials are specified so maybe "OK". Can we write unit tests which check for logging? The logging would have been VERY helpful to me initially when I encountered this issue. |
||
// Ignore, as this may happen before the credentials are specified | ||
} | ||
} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
as far as I can tell from EC2Cloud.java my use here should be OK because there is a guard for empty roleArn and roleSessionName
https://github.com/jenkinsci/ec2-plugin/blob/master/src/main/java/hudson/plugins/ec2/EC2Cloud.java#L956