From 511fedc75b452073e8247ff0198f8a033584936a Mon Sep 17 00:00:00 2001 From: delfino <67192579+x-delfino@users.noreply.github.com> Date: Tue, 19 Dec 2023 19:52:09 +0000 Subject: [PATCH] Update container app secret identity 'System' case sensitivity Co-authored-by: jackofallops <11830746+jackofallops@users.noreply.github.com> --- internal/services/containerapps/helpers/container_apps.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/services/containerapps/helpers/container_apps.go b/internal/services/containerapps/helpers/container_apps.go index e1d4caf3dc37..acbdc9f7b8c0 100644 --- a/internal/services/containerapps/helpers/container_apps.go +++ b/internal/services/containerapps/helpers/container_apps.go @@ -2565,7 +2565,7 @@ func SecretsSchema() *pluginsdk.Schema { Optional: true, ValidateFunc: validation.Any( commonids.ValidateUserAssignedIdentityID, - validation.StringInSlice([]string{"system"}, true), + validation.StringInSlice([]string{"System"}, false), ), Description: "The identity to use for accessing key vault reference.", },