I'm trying to bring our AWS account under terraform but it's throwing an error the that RDS Option group name isn't supported it has a colon in it. How do I rename it either via the GUI or CLI so it can then be managed by terraform?
Asked
Active
Viewed 342 times
1 Answers
1
On the AWS side:
- You cannot modify the default RDS option group. However, you can create a new one and give it the name of your choice, after which you can associate it with your RDS instance.
- The name of the option group "can contain only letters, digits, and hyphens." So that error message about a colon in the name is misleading.
Reference: Working with option groups

vjones
- 851
- 7
- 13
-
Just to add - I removed the configuration for the default ones so it's not managed by terraform and instead created new options groups that are. – digital Jul 22 '19 at 12:25