Skip to content

Commit 156e6a8

Browse files
committed
Pull the VENOM Tanium hostname from SSM Parameter Store
1 parent 28b25b7 commit 156e6a8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: src/venom.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- hosts: all
3-
name: Install Tanium client and configure UFW for VENOM
3+
name: Configure for VENOM
44
vars:
55
ports:
66
# Tanium
@@ -29,6 +29,7 @@
2929
roles:
3030
- role: venom_tanium_client
3131
vars:
32+
server_name: "{{ lookup('aws_ssm', '/venom/tanium_hostname') }}"
3233
third_party_bucket_name: "{{ build_bucket }}"
3334
- role: venom_nessus_agent
3435
vars:

Diff for: terraform-build-user/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module "iam_user" {
99
aws.images-staging-ssm = aws.images-staging-ssm
1010
}
1111

12-
ssm_parameters = ["/cyhy/dev/users", "/ssh/public_keys/*", "/openvpn/server/*"]
12+
ssm_parameters = ["/cyhy/dev/users", "/openvpn/server/*", "/ssh/public_keys/*", "/venom/tanium_hostname"]
1313
user_name = "build-openvpn-packer"
1414
tags = {
1515
Team = "CISA - Development"

0 commit comments

Comments
 (0)