Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ashle001 committed May 27, 2021
1 parent 5fb9253 commit 48ea19d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions rds-mysql/README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# About rds-postgres
# About rds-mysql

This describes how to use the aws-common-security-groups submodule for rds-postgres.
This describes how to use the aws-common-security-groups submodule for rds-mysql.

Default and auxilliary ports are included in this. They are opened to everything.

## Usage

```hcl
module "postgres" {
source = "git@github.e.it.census.gov:terraform-modules/aws-common-security-groups.git//rds-postgres"
module "mysql" {
source = "git@github.e.it.census.gov:terraform-modules/aws-common-security-groups.git//rds-mysql"
vpc_id = var.vpc_id
## optional
# name = "m-postgres-db"
# name = "m-mysql-db"
## tags for Name, CostAllocation, and Environment are pre-set, but they can be overriden
# tags = { }
Expand Down Expand Up @@ -48,14 +48,14 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_description"></a> [description](#input\_description) | Security Group Description | `string` | `"RDS PostgreSQL Security Group"` | no |
| <a name="input_description"></a> [description](#input\_description) | Security Group Description | `string` | `"RDS MySQL Security Group"` | no |
| <a name="input_egress_networks"></a> [egress\_networks](#input\_egress\_networks) | List of egress networks (all ports) | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
| <a name="input_egress_security_groups"></a> [egress\_security\_groups](#input\_egress\_security\_groups) | List of egress security groups (all ports) | `list(string)` | `[]` | no |
| <a name="input_enable_self"></a> [enable\_self](#input\_enable\_self) | Enable\|Disable self full access | `bool` | `false` | no |
| <a name="input_ingress_networks"></a> [ingress\_networks](#input\_ingress\_networks) | List of ingress networks for external access (not all ports) | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
| <a name="input_ingress_security_groups"></a> [ingress\_security\_groups](#input\_ingress\_security\_groups) | List of ingress security groups for all ports | `list(string)` | `[]` | no |
| <a name="input_name"></a> [name](#input\_name) | Security Group Name | `string` | `"m-postgres-db"` | no |
| <a name="input_short_description"></a> [short\_description](#input\_short\_description) | Security Group Short Description | `string` | `"PostgreSQL"` | no |
| <a name="input_name"></a> [name](#input\_name) | Security Group Name | `string` | `"m-mysql-db"` | no |
| <a name="input_short_description"></a> [short\_description](#input\_short\_description) | Security Group Short Description | `string` | `"MySQL"` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Extra security group tags | `map` | <pre>{<br> "CostAllocation": "csvd:infrastructure",<br> "Environment": "csvd-infrastructure"<br>}</pre> | no |
| <a name="input_use_vpc_cidr"></a> [use\_vpc\_cidr](#input\_use\_vpc\_cidr) | Enable\|Disable use of VPC CIDR block in the ingress\_networks | `bool` | `false` | no |
| <a name="input_vpc_full_name"></a> [vpc\_full\_name](#input\_vpc\_full\_name) | VPC Name | `string` | `""` | no |
Expand Down

0 comments on commit 48ea19d

Please sign in to comment.