File tree Expand file tree Collapse file tree
infrastructure/modules/application-insights-availability-test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ resource "azurerm_application_insights_standard_web_test" "this" {
2727 for_each = var. ssl_validation != null ? [1 ] : []
2828 content {
2929 expected_status_code = var. ssl_validation . expected_status_code
30- ssl_check_enabled = var . ssl_validation . ssl_check_enabled
30+ ssl_check_enabled = true
3131 ssl_cert_remaining_lifetime = var. ssl_validation . ssl_cert_remaining_lifetime
3232 }
3333 }
Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ Type:
104104``` hcl
105105object({
106106 expected_status_code = optional(number, null)
107- ssl_check_enabled = optional(bool, true)
108107 ssl_cert_remaining_lifetime = optional(number, null)
109108})
110109```
Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ variable "ssl_validation" {
7575 description = " SSL validation configuration for the availability test."
7676 type = object ({
7777 expected_status_code = optional (number , null )
78- ssl_check_enabled = optional (bool , true )
7978 ssl_cert_remaining_lifetime = optional (number , null )
8079 })
8180
You can’t perform that action at this time.
0 commit comments