Skip to content

Commit

Permalink
use new rds snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
roncitrus committed Feb 12, 2024
1 parent b51a09d commit ac294a2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions terraform/environments/cdpt-ifs/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ resource "aws_launch_template" "ec2-launch-template" {

network_interfaces {
associate_public_ip_address = false
security_groups = [aws_security_group.cluster_ec2.id]#, aws_security_group.db.id]
security_groups = [aws_security_group.cluster_ec2.id], aws_security_group.db.id]
}

block_device_mappings {
Expand Down Expand Up @@ -318,13 +318,13 @@ ingress {
security_groups = [aws_security_group.ifs_lb_sc.id]
}

# ingress {
# description = "Allow RDP ingress"
# from_port = 3389
# to_port = 3389
# protocol = "tcp"
# security_groups = [module.bastion_linux.bastion_security_group]
# }
ingress {
description = "Allow RDP ingress"
from_port = 3389
to_port = 3389
protocol = "tcp"
security_groups = [module.bastion_linux.bastion_security_group]
}

egress {
description = "Cluster EC2 loadbalancer egress rule"
Expand Down

0 comments on commit ac294a2

Please sign in to comment.