Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Removed validation for optional module AB#23089 #446

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions modules/azure/logic_app_standard/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,6 @@ variable "managed_identity_provider" {
identifier_uris = optional(list(string)) # api://<application_name> will be added by default if application is create
allowed_audiences = optional(list(string)) # api://<application-name> will be added by default
})
validation {
condition = var.managed_identity_provider.existing != null || var.managed_identity_provider.create != null
error_message = "Variable managed_identity_provider has to provide either an existing managed identity provider or given information to create one"
}
description = "The managed identity provider to use for connections on this function app"
default = null
}
Expand Down