Skip to content

Commit

Permalink
add global protect access to jitbit and delius-core (#3645)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobostion authored Oct 18, 2023
1 parent eec7ab8 commit c84b465
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "aws_vpc_security_group_ingress_rule" "delius_core_frontend_alb_ingress
cidr_ipv4 = "81.134.202.29/32" # MoJ Digital VPN
}

resource "aws_vpc_security_group_ingress_rule" "delius_core_frontend_alb_ingress_https_allowlist_gp" {
resource "aws_vpc_security_group_ingress_rule" "delius_core_frontend_alb_ingress_https_global_protect_allowlist" {
security_group_id = aws_security_group.delius_frontend_alb_security_group.id
description = "access into delius core frontend alb over https"
from_port = "443"
Expand All @@ -35,7 +35,7 @@ resource "aws_vpc_security_group_ingress_rule" "delius_core_frontend_alb_ingress
cidr_ipv4 = "35.176.93.186/32" # Global Protect VPN
}

resource "aws_vpc_security_group_ingress_rule" "delius_core_frontend_alb_ingress_http_allowlist_gp" {
resource "aws_vpc_security_group_ingress_rule" "delius_core_frontend_alb_ingress_http_global_protect_allowlist" {
security_group_id = aws_security_group.delius_frontend_alb_security_group.id
description = "access into delius core frontend alb over http (will redirect)"
from_port = "80"
Expand Down

0 comments on commit c84b465

Please sign in to comment.