removed deprecated lines

This commit is contained in:
Edward Viaene
2016-10-14 08:59:23 +00:00
parent 6789aec679
commit f67b4b0e12
4 changed files with 13 additions and 9 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ resource "aws_ebs_volume" "ebs-volume-1" {
}
resource "aws_volume_attachment" "ebs-volume-1-attachment" {
device_name = "/dev/xvdh"
device_name = "${var.INSTANCE_DEVICE_NAME}"
volume_id = "${aws_ebs_volume.ebs-volume-1.id}"
instance_id = "${aws_instance.example.id}"
}