Skip to content

Commit

Permalink
add additional rules
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed May 10, 2021
1 parent 4a80bdb commit df2d01d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions common/defaults.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,15 @@ locals {
# basic outbounds
ephemeral_outbound = [1024, 65535, true, "tcp", "allow", "ephemeral-outbound"]
all_outbound = [0, 0, true, "all", "allow", "all-outbound"]
http_outbound = [80, 80, true, "tcp", "allow", "http-outbound"]
https_outbound = [443, 443, true, "tcp", "allow", "https-outbound"]

# basic inbounds
all_inbound = [0, 0, false, "all", "allow", "all-inbound"]
http_inbound = [80, 80, false, "tcp", "allow", "http-inbound"]
https_inbound = [443, 443, false, "tcp", "allow", "https-inbound"]
ssh_inbound = [22, 22, false, "tcp", "allow", "https-inbound"]
ephemeral_inbound = [1024, 65535, false, "tcp", "allow", "ephemeral-inbound"]
all_inbound = [0, 0, false, "all", "allow", "all-inbound"]
http_inbound = [80, 80, false, "tcp", "allow", "http-inbound"]
https_inbound = [443, 443, false, "tcp", "allow", "https-inbound"]
ssh_inbound = [22, 22, false, "tcp", "allow", "https-inbound"]
}
#---
# vpc varies by specific VPC cidr block, this will be merged with the actual vpc CIDR
Expand Down

0 comments on commit df2d01d

Please sign in to comment.