Skip to content

Commit

Permalink
add INC000002587282: tcp/4445 for EnCase
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 19, 2021
1 parent 75306e3 commit f417581
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
5 changes: 4 additions & 1 deletion it-windows-base/CHANGELOG.md
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
1 change: 0 additions & 1 deletion it-windows-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ module "it-windows-base" {

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_module\_version | Module version number | `string` | `"1.0"` | no |
| description | Security Group Description | `string` | `"Windows Common Base Security Group"` | no |
| egress\_networks | List of egress networks (all ports) | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
| egress\_security\_groups | List of egress security groups (all ports) | `list(string)` | `[]` | no |
Expand Down
2 changes: 1 addition & 1 deletion it-windows-base/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ resource "aws_security_group" "this_security_group" {
tags = merge(
map("Name", "sg-${local.name}"),
var.tags,
map("boc:tf_module_version", var._module_version),
map("boc:tf_module_version", local._module_version),
map("boc:vpc:info", join(" ", compact(list(var.vpc_id, var.vpc_full_name)))),
)
}
2 changes: 2 additions & 0 deletions it-windows-base/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ locals {
n_mgmt = ["148.129.162.0/24", "148.129.95.0/24"]
n_backup = ["10.193.0.0/22"]
n_ansible = ["172.24.12.239/32"]
n_encase = ["148.129.71.121/32"]
source_groups = ["all", "external"]
name = var.name
ports = [
Expand All @@ -31,6 +32,7 @@ locals {
[5201, 5201, "udp", "iperf3", local.n_all, ["external"]],
[1556, 1556, "tcp", "Netbackup", local.n_backup, ["external"]],
[3389, 3389, "tcp", "RDP", local.n_census, ["external"]],
[4445, 4445, "tcp", "EnCase", local.n_encase, ["external"]],
[5986, 5986, "tcp", "WinRM-https", local.n_ansible, ["external"]],
]

Expand Down
6 changes: 2 additions & 4 deletions it-windows-base/version.tf
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"
}

0 comments on commit f417581

Please sign in to comment.