Skip to content

Commit

Permalink
CC-2292: Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmgovuk committed Jan 11, 2024
1 parent a3f88d0 commit bac8583
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/environments/ccms-ebs/ccms-ec2-oracle_ebs_db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ resource "aws_volume_attachment" "dbf01_att" {
aws_ebs_volume.dbf01
]
device_name = "/dev/sdq"
volume_id = aws_ebs_volume.dbf01[0].id
volume_id = aws_ebs_volume.dbf01.id
instance_id = aws_instance.ec2_oracle_ebs.id
}

Expand All @@ -305,7 +305,7 @@ resource "aws_volume_attachment" "dbf02_att" {
aws_ebs_volume.dbf02
]
device_name = "/dev/sdr"
volume_id = aws_ebs_volume.dbf02[0].id
volume_id = aws_ebs_volume.dbf02.id
instance_id = aws_instance.ec2_oracle_ebs.id
}

Expand All @@ -329,7 +329,7 @@ resource "aws_volume_attachment" "dbf03_att" {
aws_ebs_volume.dbf03
]
device_name = "/dev/sds"
volume_id = aws_ebs_volume.dbf03[0].id
volume_id = aws_ebs_volume.dbf03.id
instance_id = aws_instance.ec2_oracle_ebs.id
}

Expand Down

0 comments on commit bac8583

Please sign in to comment.