-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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
HADOOP-19201 S3A. Support external-id in assume role #6876
Changes from 2 commits
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 |
---|---|---|
|
@@ -153,6 +153,14 @@ Here are the full set of configuration options. | |
</description> | ||
</property> | ||
|
||
<property> | ||
<name>fs.s3a.assumed.role.external.id</name> | ||
<value /> | ||
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. can you an a valid example 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. What do you mean? Put an example value here? 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. yes. 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 think putting an example here is meaningless, because external id is just a string set by the user, it can by any value. No unified format. 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. so make that clear, e.g
|
||
<description> | ||
External id for assumed role, it's an optional configuration. | ||
</description> | ||
steveloughran marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</property> | ||
|
||
<property> | ||
<name>fs.s3a.assumed.role.policy</name> | ||
<value/> | ||
|
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.
lets actually cut this. Adding default values here increases the size of the configuration when marshalling, which happens a lot these days.
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.
done