Commit 31ae2e45 authored by Joey den Broeder's avatar Joey den Broeder Committed by Anton Babenko

added rdp-udp, fixed typo in mssql-broker-tcp (#37)

* added rdp-udp, fixed typo in mssql-broker-tcp

* adding rdp-udp as default

* Ran update_groups.sh
parent e0d84ff6
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
variable "auto_ingress_rules" { variable "auto_ingress_rules" {
description = "List of ingress rules to add automatically" description = "List of ingress rules to add automatically"
type = "list" type = "list"
default = ["rdp-tcp"] default = ["rdp-tcp", "rdp-udp"]
} }
variable "auto_ingress_with_self" { variable "auto_ingress_with_self" {
......
...@@ -69,7 +69,7 @@ variable "rules" { ...@@ -69,7 +69,7 @@ variable "rules" {
mssql-tcp = [1433, 1433, "tcp", "MSSQL Server"] mssql-tcp = [1433, 1433, "tcp", "MSSQL Server"]
mssql-udp = [1434, 1434, "udp", "MSSQL Browser"] mssql-udp = [1434, 1434, "udp", "MSSQL Browser"]
mssql-analytics-tcp = [2383, 2383, "tcp", "MSSQL Analytics"] mssql-analytics-tcp = [2383, 2383, "tcp", "MSSQL Analytics"]
mssql-broker-tcp. = [4022, 4022, "tcp", "MSSQL Broker"] mssql-broker-tcp = [4022, 4022, "tcp", "MSSQL Broker"]
# NFS/EFS # NFS/EFS
nfs-tcp = [2049, 2049, "tcp", "NFS/EFS"] nfs-tcp = [2049, 2049, "tcp", "NFS/EFS"]
...@@ -93,6 +93,7 @@ variable "rules" { ...@@ -93,6 +93,7 @@ variable "rules" {
# RDP # RDP
rdp-tcp = [3389, 3389, "tcp", "Remote Desktop"] rdp-tcp = [3389, 3389, "tcp", "Remote Desktop"]
rdp-udp = [3389, 3389, "udp", "Remote Desktop"]
# Redis # Redis
redis-tcp = [6379, 6379, "tcp", "Redis"] redis-tcp = [6379, 6379, "tcp", "Redis"]
...@@ -251,7 +252,7 @@ variable "auto_groups" { ...@@ -251,7 +252,7 @@ variable "auto_groups" {
} }
rdp = { rdp = {
ingress_rules = ["rdp-tcp"] ingress_rules = ["rdp-tcp", "rdp-udp"]
ingress_with_self = ["all-all"] ingress_with_self = ["all-all"]
egress_rules = ["all-all"] egress_rules = ["all-all"]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment