Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created February 27, 2019 19:12
Show Gist options
  • Select an option

  • Save 100daysofdevops/b3c17efe7bceb4d812dbc1397d4b8830 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/b3c17efe7bceb4d812dbc1397d4b8830 to your computer and use it in GitHub Desktop.
resource "aws_ebs_volume" "my-test-ebs" {
count = 2
availability_zone = "${data.aws_availability_zones.available.names[count.index]}"
size = 10
type = "gp2"
}
resource "aws_volume_attachment" "my-test-ebs-attachment" {
count = 2
device_name = "/dev/xvdh"
instance_id = "${aws_instance.test_instance.*.id[count.index]}"
volume_id = "${aws_ebs_volume.my-test-ebs.*.id[count.index]}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment