Skip to content

Commit 7c4f94b

Browse files
committed
Updates per PR review. Update param nesting for AWS private endpoints. Fix name tag for VPCE security group. Add items to config.yml
Signed-off-by: Chris Perro <cmperro@gmail.com>
1 parent 2ba39fb commit 7c4f94b

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

docs/configuration.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ globals:
227227
table:
228228
user:
229229
vpc:
230+
vpce:
230231
name_prefix:
231232
namespace_cdp:
232233
region:
@@ -264,6 +265,7 @@ infra:
264265
tags:
265266
storage:
266267
tags:
268+
private_endpoints:
267269
azure:
268270
metagroup:
269271
name:
@@ -314,6 +316,9 @@ infra:
314316
knox:
315317
name:
316318
suffix:
319+
vpce:
320+
name:
321+
suffix:
317322
storage:
318323
name:
319324
path:

roles/infrastructure/defaults/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ infra__aws_nat_gateway_suffix: "{{ infra.aws.vpc.nat_gateway.suffix | defau
114114
infra__aws_role_tags: "{{ infra.aws.role.tags | default({}) }}"
115115
infra__aws_policy_tags: "{{ infra.aws.policy.tags | default({}) }}"
116116
infra__aws_storage_tags: "{{ infra.aws.storage.tags | default({}) }}"
117+
infra__aws_private_endpoints: "{{ infra.aws.vpc.private_endpoints | default(common__tunnel) }}"
117118

118119
# GCP
119120
infra__gcp_project: "{{ common__gcp_project }}"

roles/infrastructure/tasks/setup_aws_network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
state: present
254254
region: "{{ infra__region }}"
255255
vpc_id: "{{ infra__aws_vpc_id }}"
256-
tags: "{{ infra__tags | combine({ 'Name': 'vpce_sg' }, recursive=True) }}"
256+
tags: "{{ infra__tags | combine({ 'Name': 'infra__security_group_vpce_name' }, recursive=True) }}"
257257
name: "{{ infra__security_group_vpce_name }}"
258258
description: "{{ infra__security_group_vpce_name }}"
259259
rules:

0 commit comments

Comments
 (0)