How can I resolve the error when I try to run an instance on Amazon RDS?

I am using the AWS Toolkit in Visual Studio 2013 to try to launch a new instance on Amazon RDS. I go through the wizard to create a new instance, and after clicking ends, there is a delay, and then a message appears:

Error starting database instance: database security groups can only be associated with database BPB instances using the API version from 2012-01-15 to 2012-09-17.

Running different types of instances (SQL Server SE vs MySQL) does not seem to help, nor does it select different versions of the platforms (SQL Server 2008 - 2012). The only thing to do is to uncheck the "default" checkbox in the database security group area. However, I feel that something is happening here that should not be.

Can someone explain why this is happening, and how can I solve it, except to not set a default security group? Thank.

+4
source share
2 answers

If you recently created your AWS account, you will use the default VPC.

It seems that the API that the plugin is trying to use has not been updated. The latest version is 1.5.6, and looking at the history, it seems that some of these features were added in 1.5.0.

+1
source

I finally decided it! Since I could not use the API that the VS 2013 plugin uses, I had to manually add my IP address to the security group created for my elastic beanstalk.

  • ec2
  • , Beanstalk (: , Beanstalk, RDS)
  • , ( , HTTP , ).
  • IP .
+1

Source: https://habr.com/ru/post/1533366/


All Articles