Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinda authored Apr 15, 2020
1 parent 8db50a8 commit 5049afe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module "security_group" {
description = "EC2 Security Group that allows traffic from whitelisted ips"
vpc_id = var.vpc_id
revoke_rules_on_delete = true
ingress_rules = [
ingress = [
{
from_port = 0
to_port = 0
Expand All @@ -61,7 +61,7 @@ module "security_group" {
cidr_blocks = [ module.network.vpc_cidr ]
}
]
egress_rules = [
egress = [
{
from_port = 0
to_port = 0
Expand All @@ -82,7 +82,7 @@ module "security_group" {
description = "EC2 Security Group that allows traffic from whitelisted ips"
vpc_id = var.vpc_id
revoke_rules_on_delete = true
ingress_rules = [
ingress = [
{
from_port = 0
to_port = 0
Expand All @@ -91,7 +91,7 @@ module "security_group" {
cidr_blocks = [ module.network.vpc_cidr ]
}
]
egress_rules = [
egress = [
{
from_port = 0
to_port = 0
Expand Down

0 comments on commit 5049afe

Please sign in to comment.