如何使用 Terraform 为安全组添加或删除 ingress/egress 规则?

How to append or delete the ingress/egress rule for a security group using Terraform?

有没有办法在 Terraform 中管理 AWS 安全组以编辑现有 SG 的规则?

例如:如果我提供一个新实例,现有 SG 的入口规则将更新以允许新提供的实例。 SG 也需要在实例终止时更新。

如果 Terraform 不直接支持,请随时提出其他常见做法。

是的,您可以向现有安全组 (SG) 添加和删除单个规则。这可以分两步完成:

  1. 使用 aws_security_group 获取现有 SG 的数据源:
data "aws_security_group" "selected" {
  id = <group-id-of-existing-sg>
}
  1. 创建 aws_security_group_rule 资源以将新规则添加到步骤 1 中的 SG:
resource "aws_security_group_rule" "example" {
  type              = "ingress"
  from_port         = 0
  to_port           = 65535
  protocol          = "tcp"
  cidr_blocks       = ["0.0.0.0/0"]
  security_group_id = data.aws_security_group.selected.id
}

如果您的实例是在与 SG 规则相同的 TF 文件中创建的,则 terraform destroy 实例和规则都将被销毁。