Skip to content

Commit

Permalink
Merge pull request #18 from Keyfactor/certauth-kvsecretversion-57240
Browse files Browse the repository at this point in the history
Azure Application Gateway Orchestrator extension v3.0.0
  • Loading branch information
fiddlermikey authored May 6, 2024
2 parents ea02e77 + 0f00a9b commit cd0543c
Show file tree
Hide file tree
Showing 30 changed files with 1,775 additions and 817 deletions.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@

namespace AzureAppGatewayOrchestrator.Tests;

public class AzureAppGatewayOrchestrator_AzureAppGw
public class AzureAppGw
{
ILogger _logger { get; set;}

public AzureAppGatewayOrchestrator_AzureAppGw()
public AzureAppGw()
{
ConfigureLogging();

_logger = LogHandler.GetClassLogger<AzureAppGatewayOrchestrator_AzureAppGw>();
_logger = LogHandler.GetClassLogger<AzureAppGw>();
}

[IntegrationTestingFact]
Expand Down Expand Up @@ -544,7 +544,7 @@ public void AzureAppGw_Management_IntegrationTest_ReturnSuccess()
string certName = "GatewayTest" + Guid.NewGuid().ToString()[..6];
string password = "password";

X509Certificate2 ssCert = AzureAppGatewayOrchestrator_Client.GetSelfSignedCert(testHostname);
X509Certificate2 ssCert = Client.GetSelfSignedCert(testHostname);

string b64PfxSslCert = Convert.ToBase64String(ssCert.Export(X509ContentType.Pfx, password));

Expand Down Expand Up @@ -577,7 +577,7 @@ public void AzureAppGw_Management_IntegrationTest_ReturnSuccess()

// Arrange

ssCert = AzureAppGatewayOrchestrator_Client.GetSelfSignedCert(testHostname);
ssCert = Client.GetSelfSignedCert(testHostname);

b64PfxSslCert = Convert.ToBase64String(ssCert.Export(X509ContentType.Pfx, password));

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand Down

This file was deleted.

Loading

0 comments on commit cd0543c

Please sign in to comment.