We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874024a commit 119a9caCopy full SHA for 119a9ca
templates/CloudConnector.yaml
@@ -317,10 +317,21 @@ Resources:
317
GroupName: !Sub "${AWS::StackName}-CloudConnector"
318
GroupDescription: CloudConnector workload Security Group
319
SecurityGroupEgress:
320
+ # Allow outbound HTTPS traffic over TCP
321
+ # Used by Cloud Connector to send events to https://secure.sysdig.com
322
- CidrIp: 0.0.0.0/0
323
IpProtocol: "tcp"
324
FromPort: 443
325
ToPort: 443
326
+ # Allow outbound DNS traffic over UDP and TCP
327
+ - CidrIp: 0.0.0.0/0
328
+ IpProtocol: "tcp"
329
+ FromPort: 53
330
+ ToPort: 53
331
332
+ IpProtocol: "udp"
333
334
335
Tags:
336
- Key: Name
337
Value: !Sub "${AWS::StackName}-CloudConnector"
0 commit comments