Difference between revisions of "Terraform resource: aws volume attachment"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/volume_attachment
 
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/volume_attachment
 +
 +
<pre>
 +
resource "aws_volume_attachment" "ebs_att" {
 +
  device_name = "/dev/sdh"
 +
  volume_id  = aws_ebs_volume.example.id
 +
  instance_id = aws_instance.web.id
 +
}
 +
 +
resource "aws_instance" "web" {
 +
  ami              = "ami-21f78e11"
 +
  availability_zone = "us-west-2a"
 +
  instance_type    = "t2.micro"
 +
 +
  tags = {
 +
    Name = "HelloWorld"
 +
  }
 +
}
 +
 +
resource "aws_ebs_volume" "example" {
 +
  availability_zone = "us-west-2a"
 +
  size              = 1
 +
}
 +
</pre>
 +
  
 
== Related ==
 
== Related ==

Revision as of 08:19, 15 February 2023

resource "aws_volume_attachment" "ebs_att" {
  device_name = "/dev/sdh"
  volume_id   = aws_ebs_volume.example.id
  instance_id = aws_instance.web.id
}

resource "aws_instance" "web" {
  ami               = "ami-21f78e11"
  availability_zone = "us-west-2a"
  instance_type     = "t2.micro"

  tags = {
    Name = "HelloWorld"
  }
}

resource "aws_ebs_volume" "example" {
  availability_zone = "us-west-2a"
  size              = 1
}


Related

See also

Advertising: