egress |
Outbound Config |
map(object({ description = string from_port = string to_port = string protocol = string cidr_blocks = any allow = string type = string })) |
{ "default": { "allow": "true", "cidr_blocks": [ "0.0.0.0/0" ], "description": "default", "from_port": 0, "protocol": "-1", "to_port": 0, "type": "egress" } } |
no |
ingress |
Inbound Config |
map(object({ description = string from_port = string to_port = string protocol = string cidr_blocks = any allow = string type = string })) |
{ "http-80": { "allow": "true", "cidr_blocks": [ "0.0.0.0/0" ], "description": "Allow port 80 from VPC", "from_port": 80, "protocol": "tcp", "to_port": 80, "type": "ingress" }, "minecraft": { "allow": "true", "cidr_blocks": [ "0.0.0.0/0" ], "description": "Allow port 25565 from VPC", "from_port": 25565, "protocol": "tcp", "to_port": 25565, "type": "ingress" }, "ssh-22": { "allow": "true", "cidr_blocks": [ "0.0.0.0/0" ], "description": "Allow port 22 from VPC", "from_port": 22, "protocol": "tcp", "to_port": 22, "type": "ingress" } } |
no |