modules.tf-lambda icon indicating copy to clipboard operation
modules.tf-lambda copied to clipboard

Security Group doesn't have default egress/outbound rules.

Open Genaker opened this issue 4 years ago • 0 comments

Describe the bug

The instance doesn't have an internet connection. No egress/outbound rules

FIX set default all egress:

  # Default CIDR blocks, which will be used for all egress rules in this module. Typically these are CIDR blocks of the VPC.
  # If this is not specified then no CIDR blocks will be use
  egress_cidr_blocks = ["0.0.0.0/0"]
  
  # Prefix list ids to use in all egress rules in this module.
  # egress_prefix_list_ids = ["pl-123456"]
  # Open for all CIDRs defined in egress_cidr_blocks
  egress_rules = ["all-all"]

Genaker avatar Sep 28 '21 03:09 Genaker