Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. resource "aws_instance" "example" {
  2. ami = "ami-098792953bbd38e18"
  3. instance_type = "t2.micro"
  4.  
  5. }
  6.  
  7. resource "aws_ebs_volume" "ebs-volume-1" {
  8. availability_zone = "eu-west-1a"
  9. size = 160
  10. type = "st1"
  11. tags {
  12. Name = "more volume"
  13. }
  14. }
  15.  
  16. resource "aws_volume_attachment" "ebs-volume-1-attachment" {
  17. device_name = "/dev/sdf"
  18. volume_id = "${aws_ebs_volume.ebs-volume-1.id}"
  19. instance_id = "${aws_instance.example.id}"
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement