From 72afcc6b133f0bc6c416c1cdbff5b2ed0913af64 Mon Sep 17 00:00:00 2001 From: taustgen Date: Fri, 18 Apr 2025 09:27:31 -0700 Subject: [PATCH] remove validation that only works in terraform 1.9 and newer --- variables.tf | 4 ---- 1 file changed, 4 deletions(-) diff --git a/variables.tf b/variables.tf index 398c5b18..10b394e5 100644 --- a/variables.tf +++ b/variables.tf @@ -394,10 +394,6 @@ variable "client_id" { description = "(Optional) The Client ID (appId) for the Service Principal used for the AKS deployment" nullable = false - validation { - condition = var.identity_ids == null || var.client_id == "" - error_message = "Cannot set both `client_id` and `identity_ids`." - } } variable "client_secret" {