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 d3c8e7e commit cd8cb3eCopy full SHA for cd8cb3e
infrastructure/terraform/components/acct/security_group_allow_sftp_egress.tf
@@ -0,0 +1,9 @@
1
+resource "aws_security_group" "allow_sftp_egress" {
2
+ name = "${local.csi}-sftp-egress"
3
+ vpc_id = module.vpc.vpc_id
4
+ description = "Security group for allowing outbound traffic to SFTP"
5
+
6
+ tags = {
7
+ Name = "${local.csi}-sftp-egress"
8
+ }
9
+}
0 commit comments