Niclas Antti c447e5cf15 Uncrustify maxscale
See script directory for method. The script to run in the top level
MaxScale directory is called maxscale-uncrustify.sh, which uses
another script, list-src, from the same directory (so you need to set
your PATH). The uncrustify version was 0.66.
2018-09-09 22:26:19 +03:00

18 lines
478 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 <unistd.h>
#include "testconnections.h"
#include <jansson.h>
#include "rds_vpc.h"
int main(int argc, char* argv[])
{
RDS* cluster = new RDS((char*) "auroratest");
return cluster->create_rds_db(4);
}