Skip to content

Commit 15c63ee

Browse files
committed
removed ssl_check_enabled check with hardcoded value
1 parent a981ddd commit 15c63ee

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

infrastructure/modules/application-insights-availability-test/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

infrastructure/modules/application-insights-availability-test/tfdocs.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ Type:
104104
```hcl
105105
object({
106106
expected_status_code = optional(number, null)
107-
ssl_check_enabled = optional(bool, true)
108107
ssl_cert_remaining_lifetime = optional(number, null)
109108
})
110109
```

infrastructure/modules/application-insights-availability-test/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)