@@ -34,6 +34,7 @@ common__public_suffix: "{{ globals.labels.public | default('p
3434common__private_suffix : " {{ globals.labels.private | default('pvt') }}"
3535common__security_group_knox_suffix : " {{ globals.labels.knox | default('knox') }}"
3636common__security_group_default_suffix : " {{ globals.labels.default | default('default') }}"
37+ common__security_group_vpce_suffix : " {{ globals.labels.vpce | default('vpce') }}"
3738common__role_suffix : " {{ globals.labels.role | default('role') }}"
3839common__policy_suffix : " {{ globals.labels.policy | default('policy') }}"
3940common__storage_suffix : " {{ globals.labels.storage | default('storage') }}"
@@ -45,6 +46,7 @@ common__external_data_suffix: "{{ globals.labels.external_data | def
4546common__datalake_admin_suffix : " {{ globals.labels.datalake_admin | default('dladmin') }}"
4647common__ranger_audit_suffix : " {{ globals.labels.ranger_audit | default('audit') }}"
4748common__cml_suffix : " {{ globals.labels.cml | default('cml') }}"
49+ common__cde_suffix : " {{ globals.labels.cde | default('cde') }}"
4850common__igw_suffix : " {{ globals.labels.internet_gateway | default('igw') }}"
4951common__app_suffix : " {{ globals.labels.app | default('app') }}"
5052common__group_suffix : " {{ globals.labels.group | default('group') }}"
@@ -72,9 +74,11 @@ common__vpc_public_subnets_suffix: "{{ infra.vpc.private_subnets_suffix |
7274
7375common__security_group_knox_name : " {{ infra.security_group.knox.name | default([common__namespace, common__security_group_knox_name_suffix] | join('-')) }}"
7476common__security_group_default_name : " {{ infra.security_group.default.name | default([common__namespace, common__security_group_default_name_suffix] | join('-')) }}"
77+ common__security_group_vpce_name : " {{ infra.security_group.vpce.name | default([common__namespace, common__security_group_vpce_name_suffix] | join('-')) }}"
7578
7679common__security_group_knox_name_suffix : " {{ infra.security_group.knox.suffix | default(common__security_group_knox_suffix) }}"
7780common__security_group_default_name_suffix : " {{ infra.security_group.default.suffix | default(common__security_group_default_suffix) }}"
81+ common__security_group_vpce_name_suffix : " {{ infra.security_group.vpce.suffix | default(common__security_group_vpce_suffix) }}"
7882
7983common__ml_path : " {{ infra.storage.path.ml | default('datasci') }}"
8084common__de_path : " {{ infra.storage.path.de | default('dataeng') }}"
@@ -83,6 +87,9 @@ common__data_path: "{{ infra.storage.path.data | default(
8387common__ranger_audit_path : " {{ infra.storage.path.ranger_audit | default('ranger/audit') }}"
8488
8589# AWS Infra
90+ common__aws_vpc_id : " {{ infra.aws.vpc.existing.vpc_id | default('') }}"
91+ common__aws_public_subnet_ids : " {{ infra.aws.vpc.existing.public_subnet_ids | default([]) }}"
92+ common__aws_private_subnet_ids : " {{ infra.aws.vpc.existing.private_subnet_ids | default([]) }}"
8693common__aws_region : " {{ infra.aws.region | default('eu-west-1') }}"
8794common__aws_profile : " {{ infra.aws.profile | default('') }}"
8895common__aws_role_suffix : " {{ infra.aws.role.suffix | default(common__role_suffix) }}"
@@ -141,4 +148,4 @@ common__include_datahub: "{{ datahub is defined | bool }}"
141148common__include_opdb : " {{ opdb is defined | bool }}"
142149
143150# Teardown
144- common__force_teardown : " {{ globals.force_teardown | default(False) }}" # WARNING: This will purge your namespace and anything related to it, use with extreme caution
151+ common__force_teardown : " {{ globals.force_teardown | default(False) }}" # WARNING: This will purge your namespace and anything related to it, use with extreme caution
0 commit comments