diff --git a/it-windows-base/CHANGELOG.md b/it-windows-base/CHANGELOG.md index 07e5f43..a3405d8 100644 --- a/it-windows-base/CHANGELOG.md +++ b/it-windows-base/CHANGELOG.md @@ -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) diff --git a/it-windows-base/main.tf b/it-windows-base/main.tf index 62c3f03..2c45a16 100644 --- a/it-windows-base/main.tf +++ b/it-windows-base/main.tf @@ -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)))), ) diff --git a/it-windows-base/version.tf b/it-windows-base/version.tf index 5190b69..1ee6619 100644 --- a/it-windows-base/version.tf +++ b/it-windows-base/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "1.1" + _module_version = "1.2.0" }