-
Notifications
You must be signed in to change notification settings - Fork 89
IAM | put_bucket_policy Principal validation updated with ARN #9277
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
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. Why did you decide to change something in the |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -988,7 +988,7 @@ function get_account_info(account, include_connection_cache) { | |
| 'has_login', | ||
| 'allowed_ips', | ||
| ); | ||
|
|
||
| info._id = account._id.toString(); | ||
|
Contributor
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. As commented before I think |
||
| if (account.is_support) { | ||
| info.is_support = true; | ||
| info.has_login = true; | ||
|
|
@@ -998,7 +998,10 @@ function get_account_info(account, include_connection_cache) { | |
| secret_key: 'Not Accesible' | ||
| }]; | ||
| } | ||
|
|
||
| if (account.owner) { | ||
| info.owner = account.owner._id.toString(); | ||
| } | ||
| info.iam_path = account.iam_path; | ||
| if (account.next_password_change) { | ||
| info.next_password_change = account.next_password_change.getTime(); | ||
| } | ||
|
|
||
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.
I think it would be confusing that in containerized the
account_infowill have_idas string.I thought maybe to change the property name (
account_id), but I'm not sure.We can ask someone from the team.
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.
why its confusing? We are returning
idandaccount._idshould explain itself.