@@ -16,19 +16,19 @@ variable "name" {
1616
1717variable "custom_domains" {
1818 type = list (object ({
19- name = string
20- host_name = string
19+ name = string
20+ host_name = string
2121 }))
2222 description = " List of custom domains for frontdoor."
2323}
2424variable "redirect_routes" {
2525 type = list (object ({
26- name = string
26+ name = string
2727 custom_domain_name = string
28- origin_group_name = string
29- enabled = optional (bool )
28+ origin_group_name = string
29+ enabled = optional (bool )
3030 supported_protocols = list (string )
31- patterns_to_match = list (string )
31+ patterns_to_match = list (string )
3232 }))
3333 description = " A list of redirect routes for frontdoor."
3434
@@ -40,12 +40,12 @@ variable "redirect_routes" {
4040
4141variable "forwarding_routes" {
4242 type = list (object ({
43- name = string
44- frontend_endpoint = string
45- origin_group_name = string
46- enabled = optional (bool )
43+ name = string
44+ custom_domain_name = string
45+ origin_group_name = string
46+ enabled = optional (bool )
4747 supported_protocols = list (string )
48- patterns_to_match = list (string )
48+ patterns_to_match = list (string )
4949 }))
5050 description = " A list of forwarding routes for frontdoor."
5151
@@ -57,21 +57,21 @@ variable "forwarding_routes" {
5757
5858variable "origin_groups" {
5959 type = list (object ({
60- name = string
61- health_probe = optional (object ({
62- protocol = string
60+ name = string
61+ health_probe = optional (object ({
62+ protocol = string
6363 interval_in_seconds = number
64- path = optional (string )
65- request_type = optional (string )
64+ path = optional (string )
65+ request_type = optional (string )
6666 }))
6767 origins = list (object ({
68- host_name = string
68+ host_name = string
6969 origin_host_header = optional (string )
70- http_port = optional (number )
71- https_port = optional (number )
72- enabled = optional (bool )
73- priority = optional (number )
74- weight = optional (number )
70+ http_port = optional (number )
71+ https_port = optional (number )
72+ enabled = optional (bool )
73+ priority = optional (number )
74+ weight = optional (number )
7575 }))
7676 }))
7777 description = " A list of origin groups for frontdoor."
0 commit comments