File tree Expand file tree Collapse file tree 6 files changed +25
-16
lines changed
examples-internal/organizational-k8s-threat-reuse_cloudtrail_s3
modules/services/cloud-connector
test/fixtures/single-account Expand file tree Collapse file tree 6 files changed +25
-16
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ Notice that:
81
81
82
82
| Name | Version |
83
83
| ------| ---------|
84
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.0 .0 |
84
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.1 .0 |
85
85
| <a name =" provider_helm " ></a > [ helm] ( #provider\_ helm ) | 2.4.1 |
86
86
87
87
## Modules
Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ Notice that:
81
81
82
82
| Name | Version |
83
83
| ------| ---------|
84
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.0 .0 |
85
- | <a name =" provider_aws.member " ></a > [ aws.member] ( #provider\_ aws.member ) | 4.0 .0 |
84
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.1 .0 |
85
+ | <a name =" provider_aws.member " ></a > [ aws.member] ( #provider\_ aws.member ) | 4.1 .0 |
86
86
87
87
## Modules
88
88
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ Notice that:
72
72
73
73
| Name | Version |
74
74
| ------| ---------|
75
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.0 .0 |
75
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.1 .0 |
76
76
| <a name =" provider_helm " ></a > [ helm] ( #provider\_ helm ) | 2.4.1 |
77
77
78
78
## Modules
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Notice that:
47
47
48
48
| Name | Version |
49
49
| ------| ---------|
50
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.0 .0 |
50
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.1 .0 |
51
51
52
52
## Modules
53
53
Original file line number Diff line number Diff line change @@ -4,19 +4,28 @@ resource "aws_security_group" "sg" {
4
4
5
5
vpc_id = var. ecs_vpc_id
6
6
7
- # allow all (protocol -1, from 0, to 0)
8
- # ingress {
9
- # from_port = 0
10
- # protocol = "-1"
11
- # to_port = 0
12
- # cidr_blocks = ["0.0.0.0/0"]
13
- # }
7
+ # Allow outbound DNS traffic over UDP and TCP
8
+ # Used by the ECS task to retrieve secrets from SSM
9
+ egress {
10
+ from_port = 53
11
+ protocol = " udp"
12
+ to_port = 53
13
+ cidr_blocks = [" 0.0.0.0/0" ]
14
+ }
15
+
16
+ egress {
17
+ from_port = 53
18
+ protocol = " tcp"
19
+ to_port = 53
20
+ cidr_blocks = [" 0.0.0.0/0" ]
21
+ }
14
22
15
- # allow all
23
+ # Allow outbound HTTPS traffic over TCP
24
+ # Used by Cloud Connector to send events to https://secure.sysdig.com
16
25
egress {
17
- from_port = 0
18
- protocol = " -1 "
19
- to_port = 0
26
+ from_port = 443
27
+ protocol = " tcp "
28
+ to_port = 443
20
29
cidr_blocks = [" 0.0.0.0/0" ]
21
30
}
22
31
File renamed without changes.
You can’t perform that action at this time.
0 commit comments