Monday, May 22, 2023
HomeSoftware Engineering Error creating RDS DB Occasion: IAM position ARN worth is just...

[Solved] Error creating RDS DB Occasion: IAM position ARN worth is just not worth or doesn’t embody the required permissions for: ENHANCED_MONITORING


When you find yourself attempting to create an RDS database and also you get the dreaded error message:

IAM position ARN worth is invalid or doesn't embody the required permissions for: ENHANCED_MONITORING

Then you’ll want to just remember to are assuming the proper service precept:

monitoring.rds.amazonaws.com

Your code ought to look one thing like this:

{
  "Model": "2012-10-17",
  "Assertion": [
    {
      "Action": "sts:AssumeRole",
      "Effect": "Allow",
      "Principal": {
        "Service": "cloudwatch.amazonaws.com"
      }
    },
    {
      "Action": "sts:AssumeRole",
      "Effect": "Allow",
      "Principal": {
        "Service": "monitoring.rds.amazonaws.com"
      }
    }
  ]
}
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments