You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| target_group_healthcheck_port | Port to use to connect with the target. Valid values are any valid port or "traffic-port". Defaults to "traffic-port". |`string`| "traffic-port" | no |
121
127
| target_group_healthcheck_protocol | Protocol to use to connect with the target. Defaults to "HTTP". |`string`| "HTTP" | no |
122
128
| target_group_healthcheck_timeout | Amount of time, in seconds, during which no response means a failed health check. Defaults to 5. |`number`| 5 | no |
129
+
| enable_failover_policy | Should enable/disable Failover policy for the subdomain record |`bool`|`false`| no |
130
+
| primary_record_healthcheck_id | For Failover Routing policy only. Healthcheck Id of primary record. |`string`|`null`| no |
131
+
| secondary_record_alias_name | For Failoverrouting policy only. Alias name for secondary record. |`string`|`null`| no |
132
+
| secondary_record_healthcheck_id | For Failover Routing policy only. Healthcheck Id of secondary record. |`string`|`null`| no |
133
+
| secondary_record_zone_id | For Failoverrouting policy only. Zone Id for secondary record. |`string`|`null`| no |
description="Amount of time, in seconds, for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused"
114
114
default=300
115
115
}
116
+
117
+
variable"enable_failover_policy" {
118
+
type=bool
119
+
description="Should enable/disable Failover policy for the subdomain record"
120
+
default=false
121
+
}
122
+
123
+
variable"primary_record_healthcheck_id" {
124
+
type=string
125
+
description="For Failover Routing policy only. Healthcheck Id of primary record."
126
+
default=null
127
+
}
128
+
129
+
variable"secondary_record_alias_name" {
130
+
type=string
131
+
description="For Failoverrouting policy only. Alias name for secondary record."
132
+
default=null
133
+
}
134
+
135
+
variable"secondary_record_zone_id" {
136
+
type=string
137
+
description="For Failoverrouting policy only. Zone Id for secondary record."
138
+
default=null
139
+
}
140
+
141
+
variable"secondary_record_healthcheck_id" {
142
+
type=string
143
+
description="For Failover Routing policy only. Healthcheck Id of secondary record."
0 commit comments