From 15b1049f19a23cb9bbc5a6d16117ecd84ab1d96f Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Mon, 28 Feb 2022 14:36:37 -0800 Subject: [PATCH] Fix json tag for Azure.ObjectIDs. --- authority/provisioner/azure.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authority/provisioner/azure.go b/authority/provisioner/azure.go index 14e94410..384617e0 100644 --- a/authority/provisioner/azure.go +++ b/authority/provisioner/azure.go @@ -90,7 +90,7 @@ type Azure struct { TenantID string `json:"tenantID"` ResourceGroups []string `json:"resourceGroups"` SubscriptionIDs []string `json:"subscriptionIDs"` - ObjectIDs []string `json:"ObjectIDs"` + ObjectIDs []string `json:"objectIDs"` Audience string `json:"audience,omitempty"` DisableCustomSANs bool `json:"disableCustomSANs"` DisableTrustOnFirstUse bool `json:"disableTrustOnFirstUse"`