Skip to content
This repository has been archived by the owner on Jun 5, 2020. It is now read-only.

Commit

Permalink
(MODULES-1702) Update README with example
Browse files Browse the repository at this point in the history
  • Loading branch information
petems committed Feb 8, 2015
1 parent 42a8974 commit 58f9be4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,27 @@ elb_loadbalancer { 'name-of-load-balancer':
}
```

### rds_instance

```puppet
rds_instance { 'db-name':
ensure => present,
region => 'us-west-1',
db_name => 'db-name',
engine => 'mysql',
engine_version => '5.6.19a',
license_model => 'general-public-license',
allocated_storage => 10,
availability_zone_name => 'us-west-1a',
storage_type => 'gp2',
db_instance_class => 'db.t2.micro',
master_username => 'master-db-user',
master_user_password => 'the-master-password',
multi_az => false,
db_subnet_group_name => 'name-of-VPC',
}
```

##Limitations

At the moment this module only supports a small number of the resources
Expand Down

0 comments on commit 58f9be4

Please sign in to comment.