# terraform-aws-sg **Repository Path**: itcloudy/terraform-aws-sg ## Basic Information - **Project Name**: terraform-aws-sg - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-27 - **Last Updated**: 2024-01-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # terraform-aws-sg This is a module that makes it easy to create security groups in AWS. Built for 0.12 Example Usage: ``` module "sg" { name = var.name description = var.description vpc_id = var.vpc_id ingress_rules = [ { protocol = "tcp" port = 80 cidr_blocks = ["0.0.0.0/0"] } ] } ``` outputs: the created security group accesible via: `module.sg.security_group`