From c7262d64266bd09864a343fba25bfc9e297f02cd Mon Sep 17 00:00:00 2001 From: Christopher Boumenot Date: Thu, 14 Jul 2016 14:55:31 -0700 Subject: [PATCH] Ignore Created and Updated The Azure response has changed, and is breaking the code's ability to properly deserailize the response. --- builder/azure/common/vault.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/builder/azure/common/vault.go b/builder/azure/common/vault.go index 3ab48c692..27909958a 100644 --- a/builder/azure/common/vault.go +++ b/builder/azure/common/vault.go @@ -27,13 +27,6 @@ type VaultClient struct { type Secret struct { ID *string `json:"id,omitempty"` Value string `json:"value"` - Attributes SecretAttributes `json:"attributes"` -} - -type SecretAttributes struct { - Enabled bool `json:"enabled"` - Created *string `json:"created"` - Updated *string `json:"updated"` } func (client *VaultClient) GetSecret(vaultName, secretName string) (*Secret, error) {