We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 165e642 commit 80cd226Copy full SHA for 80cd226
infra/shared/terraform/modules/active-directory/main.tf
@@ -101,6 +101,12 @@ resource "azuread_service_principal" "application_service_principal" {
101
resource "azuread_application_password" "application_password" {
102
application_id = azuread_application.app_registration.id
103
end_date = timeadd(timestamp(), "4320h") # 6 months
104
+
105
+ lifecycle {
106
+ ignore_changes = [
107
+ end_date
108
+ ]
109
+ }
110
}
111
112
# This is not guidance and is done for demo purposes. The resource below will add the
0 commit comments