通常,可以使用以下方法完成EBS卷的附加:
https://www.terraform.io/docs/providers/aws/r/volume_attachment.html
不幸的是,在我的情况下,我确实使用EKS Cluster和worker_groups DEFINITION定义了节点:
module "my-cluster" {
source = "terraform-aws-modules/eks/aws"
cluster_name = "my-cluster"
cluster_version = "1.16"
subnets = ["subnet-abcde012", "subnet-bcde012a", "subnet-fghi345a"]
vpc_id = "vpc-1234556abcdef"
worker_groups = [
{
instance_type = "m4.large"
asg_max_size = 5
}
]
}
这使我无法获取这些EC2实例的ID。
在这种情况下安装EBS的最佳方法是什么?
如何获取使用EKS Cluster创建的节点的ID?