File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change 77 network :
88 nat_gateways : 1 # Number of NAT gateways to create. Must be equal or lower to the numbers of public subnets
99 max_azs : 3 # Number of AZs to use. We will deploy the same number of private and public subnets. Must be greater than 2
10- vpc_flow_logs : True # Enable VPC flow logs for GuardDuty or network debug. Set to False if you don't need them.
1110 use_vpc_endpoints : False # Enable / Disable creation of VPC endpoints for various services (listed under vpc_interface_endpoints)
1211 vpc_gateway_endpoints :
1312 - s3
Original file line number Diff line number Diff line change @@ -176,8 +176,6 @@ def network(self):
176176 subnet_type = ec2 .SubnetType .PRIVATE )
177177 ]
178178 }
179- if install_props .Config .network .vpc_flow_logs :
180- vpc_params ['flow_logs' ] = [ec2 .FlowLogOptions ()]
181179 self .soca_resources ["vpc" ] = ec2 .Vpc (self , "SOCAVpc" , ** vpc_params )
182180 core .Tags .of (self .soca_resources ["vpc" ]).add ("Name" , f"{ user_specified_variables .cluster_id } -VPC" )
183181 else :
You can’t perform that action at this time.
0 commit comments