frontend_rules |
A list of security group rules to be added to the Frontend security group |
list( object({ name = string direction = string remote = string tcp = optional( object({ port_max = optional(number) port_min = optional(number) }) ) udp = optional( object({ port_max = optional(number) port_min = optional(number) }) ) icmp = optional( object({ type = optional(number) code = optional(number) }) ) }) ) |
[ { "direction": "inbound", "ip_version": "ipv4", "name": "inbound-http", "remote": "0.0.0.0/0", "tcp": { "port_max": 80, "port_min": 80 } }, { "direction": "inbound", "ip_version": "ipv4", "name": "inbound-https", "remote": "0.0.0.0/0", "tcp": { "port_max": 443, "port_min": 443 } }, { "direction": "inbound", "ip_version": "ipv4", "name": "inbound-ssh", "remote": "0.0.0.0/0", "tcp": { "port_max": 22, "port_min": 22 } }, { "direction": "inbound", "icmp": { "code": 0, "type": 8 }, "ip_version": "ipv4", "name": "inbound-icmp", "remote": "0.0.0.0/0" }, { "direction": "outbound", "ip_version": "ipv4", "name": "dns-outbound", "remote": "0.0.0.0/0", "udp": { "port_max": 53, "port_min": 53 } } ] |
no |