From fdc3d7d90bf303d5258cc5a1d26f7b554b0103c3 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Fri, 28 Nov 2025 11:07:35 -0600 Subject: [PATCH] adding app registration module --- modules/app_registration/variables.tf | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/modules/app_registration/variables.tf b/modules/app_registration/variables.tf index 8f3320e..5aee15f 100644 --- a/modules/app_registration/variables.tf +++ b/modules/app_registration/variables.tf @@ -1,9 +1,11 @@ variable "access_token_issuance_enabled" { - type = optional(bool) + default = null + type = bool } variable "id_token_issuance_enabled" { - type = optional(bool) + default = null + type = bool } variable "additional_resource_access" { @@ -33,12 +35,14 @@ variable "azuread_provider_alias" { } variable "client_id" { - type = optional(string) + default = null + type = string } variable "client_secret" { + default = null sensitive = true - type = opitonal(string) + type = string } variable "destination" { @@ -56,6 +60,7 @@ variable "federated_identity_credential" { } variable "enable_identifier_uri" { + default = null type = bool } @@ -80,7 +85,8 @@ variable "secret" { } variable "redirect_uris" { - type = optional(list(string)) + default = null + type = list(string) } variable "tenant_id" {