github.com/hazelops/ize@v1.1.12-0.20230915191306-97d7c0e48f11/examples/sls-apps-monorepo/.ize/env/testnut/main.tf (about)

     1  resource "aws_security_group" "default" {
     2    name        = "${var.env}-default"
     3    description = "Managed by Terraform"
     4  
     5    ingress {
     6      protocol    = -1
     7      from_port   = 0
     8      to_port     = 0
     9      cidr_blocks = ["0.0.0.0/0"]
    10    }
    11  
    12    egress {
    13      protocol    = -1
    14      from_port   = 0
    15      to_port     = 0
    16      cidr_blocks = ["0.0.0.0/0"]
    17    }
    18  
    19    tags = {
    20      Terraform = "true"
    21      Env       = var.env
    22      Name      = "${var.env}-default"
    23    }
    24  }
    25