Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Token auth bug fixes #39

Merged
merged 13 commits into from
Jun 23, 2023
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v1.4.2
v1.4.3
- Bug Fix: IgnoreSSLWarning was not recognized when set to true
- Modified login API call for token auth to fix issue some users were experiencing

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ This text would be entered in as the value for the __Server Password__, instead
---


<span style="color:red">**Please note that this integration will work with the Universal Orchestrator version 10.1 or earlier, OR 10.4.1 or greater**</span>

## Use Cases

The F5 Orchestrator supports three different types of certificates stores with the capabilities for each below:
Expand All @@ -127,10 +129,6 @@ The F5 Orchestrator supports three different types of certificates stores with t

The version number of a the F5 Orchestrator can be verified by right clicking on the F5Orchestrator.dll file, selecting Properties, and then clicking on the Details tab.

## Keyfactor Version Supported

The F5 Orchestrator has been tested using Keyfactor Command version 9.4 and the Keyfactor Universal Orchestrator version 9.5. However, this should be compatible with any Keyfactor versions 9.x and above.

## F5 Orchestrator Installation

1. Stop the Keyfactor Universal Orchestrator Service.
Expand Down
2 changes: 1 addition & 1 deletion WebServer/Inventory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public override JobResult ProcessJob(InventoryJobConfiguration config, SubmitInv
try
{
LogHandlerCommon.Debug(logger, JobConfig.CertificateStoreDetails, "Processing job parameters");
dynamic properties = JsonConvert.DeserializeObject(config.CertificateStoreDetails.Properties.ToString());
base.ParseJobProperties();
SetPAMSecrets(config.ServerUsername, config.ServerPassword, logger);

F5Client f5 = new F5Client(config.CertificateStoreDetails, ServerUserName, ServerPassword, config.UseSSL, null, IgnoreSSLWarning, config.LastInventory);
Expand Down
6 changes: 2 additions & 4 deletions readme_source.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<span style="color:red">**Please note that this integration will work with the Universal Orchestrator version 10.1 or earlier, OR 10.4.1 or greater**</span>

## Use Cases

The F5 Orchestrator supports three different types of certificates stores with the capabilities for each below:
Expand All @@ -23,10 +25,6 @@ The F5 Orchestrator supports three different types of certificates stores with t

The version number of a the F5 Orchestrator can be verified by right clicking on the F5Orchestrator.dll file, selecting Properties, and then clicking on the Details tab.

## Keyfactor Version Supported

The F5 Orchestrator has been tested using Keyfactor Command version 9.4 and the Keyfactor Universal Orchestrator version 9.5. However, this should be compatible with any Keyfactor versions 9.x and above.

## F5 Orchestrator Installation

1. Stop the Keyfactor Universal Orchestrator Service.
Expand Down
Loading