Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
- set client_tls_policy as optional
- set subject_alt_names as optional
  • Loading branch information
wenzizone committed Dec 24, 2024
1 parent bf2995d commit cd28a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/net-lb-app-ext/variables-backend-service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ variable "backend_service_configs" {
}))
}))
security_settings = optional(object({
client_tls_policy = string
subject_alt_names = list(string)
client_tls_policy = optional(string)
subject_alt_names = optional(list(string))
aws_v4_authentication = optional(object({
access_key_id = optional(string)
access_key = optional(string)
Expand Down

0 comments on commit cd28a89

Please sign in to comment.