Skip to content

Commit dc4d5ff

Browse files
author
Bob Pokorny
committed
Made corrections per co-pilot
1 parent 1a26ccb commit dc4d5ff

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

WindowsCertStore.IntegrationTests/Factories/ConfigurationFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ public static IEnumerable<object[]> GetInventoryTestData()
8787
// Define test inputs (machine, username, and password)
8888
var testCases = new[]
8989
{
90-
new { Machine = "192.168.230.137", Username = "ad\\administrator", Password = "C:\\Users\\bpokorny\\.ssh\\my_rsa" },
91-
new { Machine = "192.168.230.137", Username = "ad\\administrator", Password = "C:\\Users\\bpokorny\\.ssh\\my_rsa" }
90+
new { Machine = "{IPAddressToClient}", Username = "{username}", Password = "{path_to_.ssh\\my_rsa}" },
91+
new { Machine = "{IUAddressToClient}", Username = "{username}", Password = "{path_to_.ssh\\my_rsa}" }
9292
};
9393

9494
foreach (var testCase in testCases)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"KeyVault": {
3-
"Uri": "https://akv-wincert.vault.azure.net/"
3+
"Uri": "{URL_To_WinCert_KV}"
44
}
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[
2-
{ "Machine": "192.168.230.137" }
2+
{ "Machine": "{IPAddress}" }
33
]

WindowsCertStore.UnitTests/AdfsUnitTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ public void Test_AdfsInventory()
1717
// Arrange
1818
RemoteSettings settings = new RemoteSettings
1919
{
20-
ClientMachineName = "192.168.230.253",
20+
ClientMachineName = "{IPAddress}}",
2121
Protocol = "http",
2222
Port = "5985",
2323
IncludePortInSPN = true,
24-
ServerUserName = @"ad\administrator",
25-
ServerPassword = "@dminP@ssword%"
24+
ServerUserName = @"{username}",
25+
ServerPassword = "{password}"
2626
};
2727

2828
// Act

WindowsCertStore.UnitTests/SANsUnitTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Keyfactor.Extensions.Orchestrator.WindowsCertStore;
22
using Keyfactor.Orchestrators.Extensions;
3-
using System.Security.Permissions;
43

54
namespace WindowsCertStore.UnitTests
65
{

docsource/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Overview
22
The Windows Certificate Orchestrator Extension is a multi-purpose integration that can remotely manage certificates on a Windows Server's Local Machine Store. This extension currently manages certificates for the current store types:
3-
* WinADFS - Rotates the Service-Communications certificate on the primary and secondary AFDS nodes
3+
* WinADFS - Rotates the Service-Communications certificate on the primary and secondary ADFS nodes
44
* WinCert - Certificates defined by path set for the Certificate Store
55
* WinIIS - IIS Bound certificates
66
* WinSQL - Certificates that are bound to the specified SQL Instances

0 commit comments

Comments
 (0)