Skip to content

Commit c2c831d

Browse files
committed
swap domain of bastion 1 and 2
1 parent 61faa2e commit c2c831d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terraform/bastion/instance.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ data "aws_route53_zone" "rust_lang_org" {
4444

4545
resource "aws_route53_record" "bastion" {
4646
zone_id = data.aws_route53_zone.rust_lang_org.id
47-
name = "bastion.infra.rust-lang.org"
47+
name = "bastion1.infra.rust-lang.org"
4848
type = "A"
4949
records = [aws_eip.bastion.public_ip]
5050
ttl = 300
5151
}
5252

5353
resource "aws_route53_record" "bastion2" {
5454
zone_id = data.aws_route53_zone.rust_lang_org.id
55-
name = "bastion2.infra.rust-lang.org"
55+
name = "bastion.infra.rust-lang.org"
5656
type = "A"
5757
records = [aws_eip.bastion2.public_ip]
5858
ttl = 300

0 commit comments

Comments
 (0)