Skip to content

Commit

Permalink
KeyVaultPreparer passes required SkuFamily argument
Browse files Browse the repository at this point in the history
  • Loading branch information
chlowell committed Sep 18, 2020
1 parent a5338e2 commit 60330d2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
StoragePermissions,
Permissions,
Sku,
SkuFamily,
SkuName,
AccessPolicyEntry,
VaultProperties,
Expand Down Expand Up @@ -87,7 +88,7 @@ def create_resource(self, name, **kwargs):
]
properties = VaultProperties(
tenant_id=self.test_class_instance.get_settings_value("TENANT_ID"),
sku=Sku(name=self.sku),
sku=Sku(name=self.sku, family=SkuFamily.A),
access_policies=access_policies,
vault_uri=None,
enabled_for_deployment=self.enabled_for_deployment,
Expand Down

0 comments on commit 60330d2

Please sign in to comment.