-
Notifications
You must be signed in to change notification settings - Fork 63
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
Update query to show root_account user status as info. #286
Conversation
The earlier query does not need any major change, we just made root_account status as info, it will have all required validation as applicable for other users. This is behind turbot/steampipe-plugin-aws#662 |
@@ -2,6 +2,9 @@ select | |||
-- Required Columns | |||
user_arn as resource, | |||
case | |||
--root_account will have always password associated even though AWS credential report returns 'not_supported' for password_enabled | |||
when user_name = '<root_account>' | |||
then 'info' |
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.
Please add them into a single line
@@ -2,6 +2,8 @@ select | |||
-- Required Columns | |||
user_arn as resource, | |||
case | |||
when user_name = '<root_account>' |
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.
Please add them into a single line
Checklist