Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. resource "aws_volume_attachment" "ebs_att" {
  2. device_name = "/dev/sdp"
  3. volume_id = "${aws_ebs_volume.example.id}"
  4. instance_id = "${aws_instance.web.id}"
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement