Skip to content

Commit

Permalink
allow port 80 and 443 web
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsweetman committed Dec 5, 2023
1 parent 5d6a813 commit ba12d71
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions terraform/environments/planetfm/locals_security_groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -117,19 +117,20 @@ locals {
self = true
}
http_web = {
description = "80: Allow HTTP ingress from LB"
from_port = 80
to_port = 80
protocol = "TCP"
security_groups = ["loadbalancer"]
}
# https_web = {
# description = "443: Allow HTTPS ingress from Azure"
# from_port = 443
# to_port = 443
# protocol = "TCP"
# cidr_blocks = local.security_group_cidrs.enduserclient
# }
description = "80: Allow HTTP ingress from LB"
from_port = 80
to_port = 80
protocol = "TCP"
cidr_blocks = local.security_group_cidrs.enduserclient
# security_groups = ["loadbalancer"]
}
https_web = {
description = "443: Allow HTTPS ingress from Azure"
from_port = 443
to_port = 443
protocol = "TCP"
cidr_blocks = local.security_group_cidrs.enduserclient
}
rdp_tcp_web = {
description = "3389: Allow RDP UDP ingress from jumpserver"
from_port = 3389
Expand Down

0 comments on commit ba12d71

Please sign in to comment.