Skip to content

add hpsa, hpom INC000002652291 #11

Merged
merged 7 commits into from
Feb 26, 2021
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions it-windows-base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
* add EnCase source 148.129.71.121 to 4445/tcp (ticket INC000002587282)
* add Riverbed Transaction Agent (formerly appcapture) 172.24.100.107 to 27401/tcp

# v1.2 -- 20210226
* add HPSA source 172.24.100.141/32, 172.24.100.154/32, 172.24.100.166/32 to 1002/tcp (ticket INC000002652291)
* add HPOM source 172.24.105.24/32 to 383/tcp and udp (ticket INC000002652291)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Simplify:

  • add HPSA and HPOM
  • ticket INC000002652291

1 change: 1 addition & 0 deletions it-windows-base/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ resource "aws_security_group" "this_security_group" {
tags = merge(
map("Name", "sg-${local.name}"),
var.tags,
map("boc:created_by", "terraform"),
map("boc:tf_module_version", local._module_version),
map("boc:vpc:info", join(" ", compact(list(var.vpc_id, var.vpc_full_name)))),
)
Expand Down
5 changes: 5 additions & 0 deletions it-windows-base/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ locals {
n_ansible = ["172.24.12.239/32"]
n_encase = ["148.129.121.72/32"]
n_riverbed = ["172.24.100.107/32"]
n_hpsa = ["172.24.100.141/32", "172.24.100.154/32", "172.24.100.165/32"]
n_hpom = ["172.24.105.24/32"]
source_groups = ["all", "external"]
name = var.name
ports = [
Expand All @@ -36,6 +38,9 @@ locals {
[4445, 4445, "tcp", "EnCase", local.n_encase, ["external"]],
[5986, 5986, "tcp", "WinRM-https", local.n_ansible, ["external"]],
[27401, 27401, "tcp", "TransactionAgent", local.n_riverbed, ["external"]],
[1002, 1002, "tcp", "HPSA", local.n_hpsa, ["external"]],
[383, 383, "tcp", "HPOM", local.n_hpom, ["external"]],
[383, 383, "udp", "HPOM", local.n_hpom, ["external"]],
]

# these are ignored
Expand Down
2 changes: 1 addition & 1 deletion it-windows-base/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.1"
_module_version = "1.2.0"
}