Skip to content

Commit

Permalink
smb
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf committed Jan 11, 2025
1 parent 8d1b7c9 commit 7dd2711
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions terraform/security.tf
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,16 @@ resource "aws_security_group_rule" "WinBuilder_WinRMFromAdminNode" {
description = "Allow WinRM access from the admin node only"
}

resource "aws_security_group_rule" "WinBuilder_SmbLocally" {
security_group_id = aws_security_group.WinBuilder.id
type = "ingress"
from_port = 445
to_port = 445
source_security_group_id = aws_security_group.CompilerExplorer.id
protocol = "tcp"
description = "Allow SMB access locally"
}

resource "aws_iam_role" "WinBuilder" {
name = "WinBuilder"
description = "Compiler Explorer Windows builder role"
Expand Down

0 comments on commit 7dd2711

Please sign in to comment.