-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow dots in the name of aws_db_subnet_group #2665
Conversation
Well, attempted to add a test, but either both I and Travis don't understand how to run it, or it's not actually testing anything useful, since the tests pass even if I totally break the regex. |
Hi @bitglue - it's an acceptance test that interacts with an AWS account, so it won't be run by travis. The README has details on how to run acc tests. |
The RDS API reference doesn't say dots are allowed, but they are. For the sake of people who have preexisting resources with dots in the names, we should allow them also. Fixes hashicorp#2664.
8174bda
to
fb12263
Compare
OK well, I put it back to a working configuration. I don't know if the tests work or not -- running the acceptance tests is beyond the threshold of effort I can expend on a one-character bugfix. |
Sounds good @bitglue, we can double check them on our side. |
^ works aok => 👍 @bitglue the test could be renamed too, but I can do it afterwards. |
Allow dots in the name of aws_db_subnet_group
FYI I just reported this to AWS as I did underscores a while back too. |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
The RDS API reference doesn't say dots are allowed, but they are. For
the sake of people who have preexisting resources with dots in the
names, we should allow them also. Fixes #2664.