Home > Software engineering >  AWS EC2: does Network Load Balancer have security groups?
AWS EC2: does Network Load Balancer have security groups?

Time:12-29

In the doc: enter image description here

How to edit its security group then?

Currently requests to the NLB cannot be delivered to the EC2 instance in the target group, because of security group configurations.

Why can't I edit??

CodePudding user response:

No, Network Load Balancers do not have security groups. You should add Security Groups directly to the EC2 targets based on IP addresses or CIDR blocks.

See: Target Security Groups - Elastic Load Balancing

  • Related