Skip to content

Commit

Permalink
OPS-0: fixed ingress and egress
Browse files Browse the repository at this point in the history
  • Loading branch information
vikkasyousaf committed Apr 2, 2024
1 parent a6dec16 commit 4e6aed2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,10 @@ Default:
```json
[
{
"self": true
"from_port": 0,
"protocol": -1,
"self": true,
"to_port": 0
}
]
```
Expand All @@ -321,7 +324,10 @@ Default:
```json
[
{
"self": true
"from_port": 0,
"protocol": "-1",
"self": true,
"to_port": 0
}
]
```
Expand Down
10 changes: 8 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,20 @@ variable "default_security_group_ingress" {
description = "List of maps of ingress rules to set on the default security group"
type = list(map(string))
default = [{
self = true
protocol = -1
self = true
from_port = 0
to_port = 0
}]
}

variable "default_security_group_egress" {
description = "List of maps of egress rules to set on the default security group"
type = list(map(string))
default = [{
self = true
protocol = "-1"
self = true
from_port = 0
to_port = 0
}]
}

0 comments on commit 4e6aed2

Please sign in to comment.