gpt4 book ai didi

amazon-web-services - terraform 如何处理挂载 AWS Elastic Block Store (EBS) 的分区?

转载 作者:行者123 更新时间:2023-12-04 10:34:33 25 4
gpt4 key购买 nike

用于安装 EBS 的示例 terraform 代码片段(仅用于上下文):

resource "aws_ebs_volume" "ebs-volume-1" {
availability_zone = "eu-central-1a"
size = 20
type = "gp2"
tags = {
Name = "extra volume data"
}
}

resource "aws_volume_attachment" "ebs-volume-1-attachment" {
device_name = "/dev/xvdh"
volume_id = aws_ebs_volume.ebs-volume-1.id
instance_id = aws_instance.example.id
}

我已经通读了有关用于安装 EBS 的属性的 terraform 文档 here ;但是,我不清楚该块设备是如何分区的(或者这里的分区是否相关。

什么是EBS的解释: here

最佳答案

“aws_ebs_volume”资源将创建 EBS 卷,“aws_volume_attachment”将其放在 EC2 实例上。

请记住,您也可以在“aws_instance”资源中执行此操作。

关于amazon-web-services - terraform 如何处理挂载 AWS Elastic Block Store (EBS) 的分区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60250933/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com