Skip to content

Commit

Permalink
Merge pull request #28 from terraform-modules/servicenow-discovery
Browse files Browse the repository at this point in the history
added ports for ServiceNow Discovery
  • Loading branch information
badra001 committed Feb 5, 2022
2 parents beeb7a9 + 7068cb3 commit 032241e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions it-windows-base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@
* remove HPSA and HPOM
* ticket INC000002703111

# v1.2.2 -- 20220203
* Added 135 and 1024-65535/tcp to it-windows-base to allow discovery from csvdsnmidw001i.csp1.ead.census.gov, csvdsnmidw002i.csp1.ead.census.gov.
* ticket INC000002819140
3 changes: 3 additions & 0 deletions it-windows-base/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ locals {
n_ansible = ["172.24.12.239/32"]
n_encase = ["148.129.121.72/32"]
n_riverbed = ["172.24.100.107/32"]
n_servicenow = ["10.193.2.104/32", "10.193.3.207/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"]
Expand All @@ -41,6 +42,8 @@ locals {
# [1002, 1002, "tcp", "HPSA", local.n_hpsa, ["external"]],
# [383, 383, "tcp", "HPOM", local.n_hpom, ["external"]],
# [383, 383, "udp", "HPOM", local.n_hpom, ["external"]],
[135, 135, "tcp", "ServiceNow Discovery", local.n_servicenow, ["external"]],
[1024, 65535, "tcp", "ServiceNow Discovery", local.n_servicenow, ["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.2.1"
_module_version = "1.2.2"
}

0 comments on commit 032241e

Please sign in to comment.