diff --git a/lb2.py b/lb2.py index 4104276..d04278e 100644 --- a/lb2.py +++ b/lb2.py @@ -97,7 +97,7 @@ def create_route_table(ec2_client, vpc_id, subnet_id, igw_id): # Create route to Internet Gateway ec2_client.create_route( RouteTableId=route_table_id, - DestinationCidrBlock='0.0.0.0/0', # Ruch wychodzÄ…cy do Internetu + DestinationCidrBlock='0.0.0.0/0', GatewayId=igw_id ) print("Added route to Internet Gateway in Route Table.")