Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

AWS add option group

I signed up for paid support and here's the answer, in case it helps anyone else. I had to edit the trust policy on the IAM role like so:

{
    "Version": "2012-10-17",
    "Statement":
    [{
        "Effect": "Allow",
        "Principal": {"Service":  "rds.amazonaws.com"},
        "Action": "sts:AssumeRole"
    }]
}

Then I was able to add the option to the option group and the restore worked. Note that the trust policy is called "trust relationship" on the web console.

Tags:

Amazon Web Services

Amazon Rds

Amazon Iam

Related

unknown directive "geoip_country" on nginx/1.10.1 In the Windows / Active Directory world what is a privilege, and how does that differ from permissions? How to display quota limit on btrfs subvolume? Letsencrypt - do I need to keep ".well-known" accessible for certificate renewal? Is it possible to combine DNS name servers? stress-ng: Simulate specific cpu percentages Remove symlink with Ansible Admin password of MariaDb doesn't seem to work Windows 10 PE Unable to map network drive anonymously Why does an `"[Errno 2] No such file or directory", "rc"` issue occur when Ansible is executed remotely? The config profile (adminuser) could not be found Any drawback in using AWS RDS "dev/test" instance for production?

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy