README.md in aws-rds-0.1.0 vs README.md in aws-rds-0.1.1
- old
+ new
@@ -14,11 +14,11 @@
```
* mydb will be the RDS database identifier show on the AWS console
* mydbname is the database name that contains the tables
-In a nutshell, the profile parameters are passed to the ruby aws-sdk [AWS::RDS::Client#create_db_instance](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_db_instance-instance_method) method. So you can specify any parameter you wish that is available there.
+In a nutshell, the profile parameters are passed to the ruby aws-sdk [AWS::RDS::Client#create_db_instance](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_db_instance-instance_method) method. So you can specify any parameter you wish that is available there. To check out what a profile looks like look at the [example default](example/profiles/default.yml)
## config
This is where you put common global settings. The required settings are listed below. Example:
@@ -39,9 +39,18 @@
```
aws-rds create mydb --security-group-name mydb --profile mydb
aws-rds create mydb # same as above
```
+
+## More Help
+
+```sh
+aws-rds create help
+aws-rds help # general help
+```
+
+Examples are in the [example](example) folder. You will have to update settings.
## Installation
```sh
gem install aws-rds