Skip to content

Commit

Permalink
revert recording change and update vault create to use displayname
Browse files Browse the repository at this point in the history
  • Loading branch information
m-nash committed Dec 10, 2021
1 parent 1448e7c commit f1f6c2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public async Task KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy
AccessPolicy.ApplicationId = Guid.Parse(TestEnvironment.ClientId);
VaultProperties.EnableSoftDelete = null;

var parameters = new VaultCreateOrUpdateParameters(LocationToUse, VaultProperties);
var parameters = new VaultCreateOrUpdateParameters("North Central US", VaultProperties);
parameters.Tags.InitializeFrom(Tags);

var createVault = await VaultCollection.CreateOrUpdateAsync(
Expand All @@ -157,7 +157,7 @@ public async Task KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy
ResGroupName,
TestEnvironment.SubscriptionId,
TenantIdGuid,
LocationToUse,
"North Central US",
"A",
SkuName.Standard,
true,
Expand All @@ -175,7 +175,7 @@ public async Task KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy
ResGroupName,
TestEnvironment.SubscriptionId,
TenantIdGuid,
LocationToUse,
"North Central US",
"A",
SkuName.Standard,
true,
Expand Down

0 comments on commit f1f6c2e

Please sign in to comment.