You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,17 @@ This API provides simple restful API access to Amazon's RDS service.
6
6
7
7
This API uses the standard format for input and output of parameters as defined by the AWS SDK (for reference see https://docs.aws.amazon.com/sdk-for-go/api/service/rds/).
8
8
9
+
### Config
10
+
9
11
You can define multiple _accounts_ in your `config.json` file which are mapped to endpoints by the API and allow RDS instances to be created in different AWS accounts. See [example config](config/config.example.json)
10
12
13
+
In each account you can optionally define certain defaults that will be used if those parameters are not specified in the POST request when creating a database:
14
+
-`defaultSubnetGroup` - the subnet group that will be used if one is not given
15
+
-`defaultDBParameterGroupName` - map of ParameterGroupFamily to ParameterGroupName's
16
+
-`defaultDBClusterParameterGroupName` - map of ParameterGroupFamily to ClusterParameterGroupName's
17
+
18
+
_Note that any default parameters need to refer to existing resources (groups), i.e. they need to be created separately outside of this API._
19
+
11
20
### Creating a database
12
21
13
22
You can specify both database cluster and instance information in the POST to create just an instance or a cluster and a member instance.
0 commit comments