You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If multiple security groups are being assigned to the instance and the first security group does not have ingress rules the instance will fail with the following error.
provision: failed to create instance: security group XXXXXX does not have the correct ingress rules. There is no rule for port 9079
The code in amazon/driver.go only checks the first security group.
// check the security group ingress rulesrulesErr:=checkIngressRules(ctx, client, p.groups[0])
ifrulesErr!=nil {
returnnil, rulesErr
}
It looks like this should work if the function checkIngressRules took multiple group identifiers
If multiple security groups are being assigned to the instance and the first security group does not have ingress rules the instance will fail with the following error.
The code in amazon/driver.go only checks the first security group.
It looks like this should work if the function
checkIngressRules
took multiple group identifiersThe text was updated successfully, but these errors were encountered: