Skip to content

Commit

Permalink
swap bastion EC2
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoIeni committed Oct 2, 2024
1 parent 645eba6 commit d697cb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/bastion/instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ data "aws_route53_zone" "rust_lang_org" {

resource "aws_route53_record" "bastion" {
zone_id = data.aws_route53_zone.rust_lang_org.id
name = "bastion.infra.rust-lang.org"
name = "bastion1.infra.rust-lang.org"
type = "A"
records = [aws_eip.bastion.public_ip]
ttl = 300
}

resource "aws_route53_record" "bastion2" {
zone_id = data.aws_route53_zone.rust_lang_org.id
name = "bastion2.infra.rust-lang.org"
name = "bastion.infra.rust-lang.org"
type = "A"
records = [aws_eip.bastion.public_ip]
ttl = 300
Expand Down

0 comments on commit d697cb3

Please sign in to comment.