File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -733,6 +733,8 @@ resource "aws_security_group_rule" "efs_inbound" {
733733 " CI-x64" = data.aws_security_group.linux_x64.id
734734 " CI-arm64" = data.aws_security_group.linux_arm64.id
735735 " CI-lin-builder-x64" = data.aws_security_group.linux_x64_builder.id
736+ " CI-x64-small" = data.aws_security_group.linux_x64_small.id
737+ " CI-x64-medium" = data.aws_security_group.linux_x64_medium.id
736738 }
737739 security_group_id = aws_security_group. efs . id
738740 type = " ingress"
@@ -844,6 +846,20 @@ data "aws_security_group" "linux_x64_builder" {
844846 }
845847}
846848
849+ data "aws_security_group" "linux_x64_small" {
850+ filter {
851+ name = " tag:ghr:environment"
852+ values = [" ce-ci-linux-x64-small" ]
853+ }
854+ }
855+
856+ data "aws_security_group" "linux_x64_medium" {
857+ filter {
858+ name = " tag:ghr:environment"
859+ values = [" ce-ci-linux-x64-medium" ]
860+ }
861+ }
862+
847863resource "aws_security_group_rule" "WinBuilder_SmbLocally" {
848864 security_group_id = aws_security_group. CompilerExplorer . id
849865 type = " ingress"
You can’t perform that action at this time.
0 commit comments