To delete an Application Load Balancer in AWS using the AWS CLI, you can use the following command:
aws elbv2 delete-load-balancer --load-balancer-arn <load_balancer_arn>
Replace <load_balancer_arn>
with the actual ARN (Amazon Resource Name) of the load balancer you want to delete. This command will delete the specified Application Load Balancer.
Leave a Comment