-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from terraform-modules/add-4445
add INC000002587282: tcp/4445 for EnCase
- Loading branch information
Showing
6 changed files
with
54 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,6 @@ | ||
| # v1.0 -- 20200731 | ||
| * create from running security group it-windows-base for use throughout | ||
|
|
||
| # v1.1 -- 20210119 | ||
| * add EnCase source 148.129.71.121 to 4445/tcp (ticket INC000002587282) | ||
|
|
||
| * create from running security group it-windows-base for use throughout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,3 @@ | ||
| variable "_module_version" { | ||
| description = "Module version number" | ||
| type = string | ||
| default = "1.0" | ||
| locals { | ||
| _module_version = "1.1" | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| # About | ||
|
|
||
| This describes how to use the aws-common-security-groups submodule for rds-mssql | ||
|
|
||
| # Usage | ||
|
|
||
| ```code | ||
| module "rds-mssql" { | ||
| source = "git::https://vc1.csvd.census.gov/terraform-modules/aws-common-security-groups.git//rds-mssql" | ||
| # name = "m-rds-mssql" | ||
| vpc_id = var.vpc_id | ||
| vpc_full_name = "vpc1-services" | ||
| # Name, CostAllocation, and Environment are pre-set | ||
| # tags = { } | ||
| } | ||
| ``` | ||
|
|
||
| ## Requirements | ||
|
|
||
| | Name | Version | | ||
| |------|---------| | ||
| | terraform | >= 0.12 | | ||
|
|
||
| ## Providers | ||
|
|
||
| | Name | Version | | ||
| |------|---------| | ||
| | aws | n/a | | ||
|
|
||
| ## Inputs | ||
|
|
||
| | Name | Description | Type | Default | Required | | ||
| |------|-------------|------|---------|:--------:| | ||
| | name | Security group Name | `string` | `"m-rds-mssql"` | no | | ||
| | tags | Extra security group tags | `map` | <pre>{<br> "CostAllocation": "csvd:infrastructure",<br> "Environment": "csvd-infrastructure"<br>}</pre> | no | | ||
| | vpc\_full\_name | VPC full name | `string` | `""` | no | | ||
| | vpc\_id | VPC ID Number | `string` | n/a | yes | | ||
|
|
||
| ## Outputs | ||
|
|
||
| | Name | Description | | ||
| |------|-------------| | ||
| | this\_security\_group\_arn | Created security group ARN | | ||
| | this\_security\_group\_id | Created security group ID | |