Merge branch '2.3' into 2.4
This commit is contained in:
14
system-test/create_rds.cpp
Normal file
14
system-test/create_rds.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
* @file create_rds.cpp Creates RDS Aurora cluster with 4 instances
|
||||
* Creates VPC, subnets, subnets group, internet gateway, routing table, routes, configure security group
|
||||
* In case of any error tries to remove all created stuff
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <maxtest/rds_vpc.hh>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
RDS* cluster = new RDS((char*) "auroratest");
|
||||
return cluster->create_rds_db(4);
|
||||
}
|
||||
Reference in New Issue
Block a user