Skip to content

Commit

Permalink
reference security group by GroupId (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-co committed Feb 5, 2020
1 parent 46a228f commit d441f5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask_cloudprovider/providers/aws/ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ async def _create_security_groups(self):
"IpProtocol": "TCP",
"FromPort": 0,
"ToPort": 65535,
"UserIdGroupPairs": [{"GroupName": self.cluster_name}],
"UserIdGroupPairs": [{"GroupId": response["GroupId"]}],
},
],
DryRun=False,
Expand Down

0 comments on commit d441f5b

Please sign in to comment.