Skip to content

Commit

Permalink
Merge pull request #598 from rust-lang/swap-bastion-ec2
Browse files Browse the repository at this point in the history
swap bastion EC2
  • Loading branch information
MarcoIeni authored Oct 7, 2024
2 parents 7790f2c + 1ecc2c4 commit 25d5c85
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 25d5c85

Please sign in to comment.