Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nimisha-gj authored Jul 22, 2024
1 parent ef2eb16 commit 0205814
Showing 1 changed file with 0 additions and 40 deletions.
40 changes: 0 additions & 40 deletions examples/security-group-with-rules/README.md
Original file line number Diff line number Diff line change
@@ -1,43 +1,3 @@
# Example to create a egress rule for security group

## Example tf.vars
```
region = "ap-south-1"
name = "Security-group-name"
description = "Security-group-description"
tags = {
"ManagedBy" = "Terraform"
}
egress_rules = [
{
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
}
]
ingress_rules = [
{
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
},
{
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
}
]
```

<!-- BEGIN_TF_DOCS -->
# Example to create a egress rule for security group

Expand Down

0 comments on commit 0205814

Please sign in to comment.