How to use instance ephemeral NVMe disk on r6id.2xlarge as the Root device with terraform aws_instance? Root device means the disk where the OS and boot block is installed.
Does the code below automatically use the instance ephemeral disk as the root block device and allocate all the available storage space without root_block_device
block?
resource "aws_instance" "web" {
ami = data.aws_ami.ubuntu.id
instance_type = "r6id.2xlarge"
}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744692271a4588279.html
评论列表(0条)