Merge pull request #296 from jmartelletti/master

Documentation fixes
This commit is contained in:
Jack Pearkes 2014-09-16 09:55:22 -04:00
commit 2a893294e3
2 changed files with 5 additions and 3 deletions

View File

@ -12,9 +12,11 @@ Provides an RDS security group resource.
```
resource "aws_db_security_group" "default" {
name = "RDS default security group"
name = "rds_sg"
description = "RDS default security group"
ingress {
cidr = "10.0.0.1/24"
cidr = "10.0.0.0/24"
}
}
```

View File

@ -37,7 +37,7 @@ The following arguments are supported:
* `private_ip` - (Optional) Private IP address to associate with the
instance in a VPC.
* `source_dest_check` - (Optional) Controls if traffic is routed to the instance when
the destination address does not match the instance. Used for NAT or VPNs. Defaults false.
the destination address does not match the instance. Used for NAT or VPNs. Defaults true.
* `user_data` - (Optional) The user data to provide when launching the instance.
## Attributes Reference