Files
MaxScale/maxscale-system-test/create_rds.cpp
2020-06-23 13:23:01 +03:00

15 lines
416 B
C++

/**
* @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.h>
int main(int argc, char* argv[])
{
RDS* cluster = new RDS((char*) "auroratest");
return cluster->create_rds_db(4);
}