Skip to content

Commit

Permalink
CC-3081: Create FTP Service in Patching Env
Browse files Browse the repository at this point in the history
  • Loading branch information
SahidKhan89 committed Jan 24, 2025
1 parent baff405 commit ed6d8e5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions terraform/environments/ccms-ebs-upgrade/r53.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,18 @@ resource "aws_route53_record" "webgate_ec2" {

## EBSWEBGATE LB DNS
resource "aws_route53_record" "ebswgate" {
count = local.is-production ? 0 : 1
provider = aws.core-vpc
zone_id = data.aws_route53_zone.external.zone_id
name = "portal-ag-upgrade.${var.networking[0].business-unit}-${local.environment}.modernisation-platform.service.justice.gov.uk"
type = "A"
name = "portal-ag-upgrade.${var.networking[0].business-unit}-${local.environment}.modernisation-platform.service.justice.gov.uk"
type = "A"
alias {
name = aws_lb.webgate_lb[count.index].dns_name
zone_id = aws_lb.webgate_lb[count.index].zone_id
name = aws_lb.webgate_lb.dns_name
zone_id = aws_lb.webgate_lb.zone_id
evaluate_target_health = false
}
}


## FTP
resource "aws_route53_record" "ftp" {
count = local.is-test ? 1 : 0
Expand Down

0 comments on commit ed6d8e5

Please sign in to comment.