Subscriptions to FlexReports are not being delivered to S3 Bucket.
search cancel

Subscriptions to FlexReports are not being delivered to S3 Bucket.

book

Article ID: 384168

calendar_today

Updated On:

Products

CloudHealth

Issue/Introduction

The root cause often is because the AWS IAM permissions 3:GetObject is missing and that is required for FlexReports only. 

Resolution

The following is for FlexReports only:

1. In the AWS Console, select Services > IAM > Policies and locate the IAM Access Policy you are using for the Tanzu CloudHealth platform.

2. In the Permissions tab, click JSON and paste the following policy in the Permissions tab. Do not modify the policy. cht-custom-reports is a CloudHealth bucket and should not be changed. 


{
 "Effect": "Allow",
 "Action": [
 "s3:GetObject"
 ],
 "Resource": [
 "arn:aws:s3:::cht-custom-reports",
 "arn:aws:s3:::cht-custom-reports/*"
 ]
 }