2

When trying to create a Cloudwatch dashboard I get "You don't have permission to access tags and properties. Retry".

What permissions does my IAM account have to have in order to be able to search and choose from tags and properties from Cloudwatch?

enter image description here

jshbrntt
  • 121
  • 2

2 Answers2

2

I had a similar problem and adding this to AWS Policy hepled me

{ "Sid": "AllowReadingResourcesForTags", "Effect": "Allow", "Action": "tag:GetResources", "Resource": "*" }

Found it here https://grafana.com/docs/grafana/latest/datasources/cloudwatch/

  • This works for me, after I added `CloudWatchFullAccess`, I still need to add this permission. Thanks! – zqcolor Apr 29 '22 at 17:12
  • This worked for me thanks. 1. I created a new Policy with the code from the example 2. I attached the new policy to the user Group – user91030 May 31 '22 at 13:44
0

I would like to suggest you to configure it via console.

  1. Create a new role with CloudWatchFullAccess

  2. Attach with required EC2 intance

Sukhjinder Singh
  • 1,944
  • 2
  • 8
  • 17