通用安全组Terraform模块 用法示例 module "my-sg" { source = "git@github.com:stain89/terraform-module-security-group.git" vpc_id = "vpc-a27e94ea" name = "test" environment = "dev" aws_region = "eu-central-1" } resource "aws_security_group_rule" "allow_postgresql" { type = "ingress" from_port = 5432 to_port = 5432 protocol = "tcp" source_secu