miniature-microphone-92266
12/23/2019, 4:13 PMSecurityGroupRule.ingress("http",
appsg,
lbsg,
new awsx.ec2.TcpPorts(80));
I'm getting "Type 'SecurityGroup' has no properties in common with type 'SecurityGroupRuleLocation'."gentle-diamond-70147
12/23/2019, 5:50 PMconst client = new awsx.ec2.SecurityGroup(`client`, { vpc });
const server = new awsx.ec2.SecurityGroup(`server`, { vpc });
awsx.ec2.SecurityGroupRule.ingress("https-access", server,
{ sourceSecurityGroupId: client.id },
new awsx.ec2.TcpPorts(443),
"allow https access");
miniature-microphone-92266
12/23/2019, 7:20 PM