looking for some help on why this is failing
aws elbv2 create-target-group --name $targetName --target-type lambda
returns
aws: error: the following arguments are required: --protocol, --port, --vpc-id
if i supply protocol, port & vpc-id
aws elbv2 create-target-group --name $targetName --target-type lambda --protocol HTTPS --port 443 --vpc-id vpc-1234
returns
An error occurred (ValidationError) when calling the CreateTargetGroup operation: Port cannot be specified for target groups with target type 'lambda'
I'm stuck, i've tried json file input with the same result. once you create the target group you can't change target-type (i tried creating a https then edit it the target-type but its not supported)