AWS Discovery Payload returns Tags successfully however Key Values Tab in cmdb_ci_cloud_database is emptyDescriptionAWS Discovery Payload returns Tags successfully however "Key Values" Tab in cmdb_ci_cloud_database is not getting populated. Release or EnvironmentQuebec Patch 6CauseTo understand exactly what is the error message followed by error status code 400, Modified line 132, 133 of MID script include: 'AwsApiCommand' below.else {responseContent = this.getResponseContent(response);throw new FailureException(ExceptionCode.CLOUD_REQUEST_FAILED, args.getUri, httpStatusCode, "", responseContent);} From the failure message it is observable that the user is not authorized to perform 'tag:GetResources'. Now that we were able to identify the exact failure, revert the changes made in MID script include: 'AwsApiCommand'. ResolutionAccording to official vendor documentation (AWS)To use Resource Groups Tagging API operations, you must add the following permissions to your IAM policy: tag:GetResourcestag:TagResourcestag:UntagResourcestag:GetTagKeystag:GetTagValues https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/overview.htmlAnd how to manage IAM policies:https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_manage.html Once above permissions and policies are added, the key values should get populated successfully.