Skip to content

Commit

Permalink
ab#67386
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Fine committed Jan 28, 2025
1 parent a0297fe commit 3a8006e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.2.1
* Add ServerUsername and ServerPassword to the integration-manifest.json to add both fields to the README documentation.

2.2.0
* Removed the ability to manage certificate/key file combinations uploaded but not yet installed on the Citrix ADC device. This was done due to issues centered around inconsistent naming of uploaded certificate and key files. From this release forward only installed certificate objects will be managed by this orchestrator extension.
* Modify process for renewing certificates to create new certificate/key files instead of deleting/re-adding existing so that no sub second outage occurs
Expand Down
42 changes: 31 additions & 11 deletions integration-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,37 @@
"StoreRequired": false,
"Style": "Default"
},
"Properties": [
{
"Name": "linkToIssuer",
"DisplayName": "Link To Issuer",
"Type": "Bool",
"DependsOn": "",
"DefaultValue": "false",
"Required": false,
"Description": "Determines whether an attempt will be made to link the added certificate (via a Management-Add job) to its issuing CA certificate."
}
],
"Properties": [
{
"Name": "ServerUsername",
"DisplayName": "Server Username",
"Type": "Secret",
"DependsOn": "",
"DefaultValue": "",
"Required": false,
"IsPAMEligible": true,
"Description": "The Citrix username (or valid PAM key if the username is stored in a KF Command configured PAM integration) to be used to log into the Citrix device."
},
{
"Name": "ServerPassword",
"DisplayName": "Server Password",
"Type": "Secret",
"DependsOn": "",
"DefaultValue": "",
"Required": false,
"IsPAMEligible": true,
"Description": "The Citrix password (or valid PAM key if the password is stored in a KF Command configured PAM integration) to be used to log into the Citrix device."
},
{
"Name": "linkToIssuer",
"DisplayName": "Link To Issuer",
"Type": "Bool",
"DependsOn": "",
"DefaultValue": "false",
"Required": false,
"Description": "Determines whether an attempt will be made to link the added certificate (via a Management-Add job) to its issuing CA certificate."
}
],
"EntryParameters": [
{
"Name": "virtualServerName",
Expand Down

0 comments on commit 3a8006e

Please sign in to comment.