You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| IgnoreSSLWarning | Ignore SSL Warning | Select this if you wish to ignore SSL warnings from F5 that occur during API calls when the site does not have a trusted certificate with the proper SAN bound to it. If you choose not to add this custom field, the default value of False will be assumed and SSL warnings will cause errors during orchestrator extension jobs. | Bool | False | ✅ Checked |
367
367
| UseTokenAuth | Use Token Authentication | Select this if you wish to use F5's token authentication instead of basic authentication for all API requests. If you choose not to add this custom field, the default value of False will be assumed and basic authentication will be used for all API requests for all jobs. Setting this value to True will enable an initial basic authenticated request to acquire an authentication token, which will then be used for all subsequent API requests. | Bool | false | ✅ Checked |
368
+
| InheritedProfile | Profile to Inherit | The optional fully qualified name of the profile you want this profile to inherit settings from in {Partition}/{ProfileName} format. If left blank, the default profile for the profile type will be used. | String || 🔲 Unchecked |
368
369
| ServerUsername | Server Username | Login credential for the F5 device. MUST be an Admin account. | Secret || 🔲 Unchecked |
369
370
| ServerPassword | Server Password | Login password for the F5 device. | Secret || 🔲 Unchecked |
370
371
| ServerUseSsl | Use SSL | True if using https to access the F5 device. False if using http. | Bool | true | ✅ Checked |
@@ -387,6 +388,13 @@ the Keyfactor Command Portal
387
388

388
389
389
390
391
+
###### Profile to Inherit
392
+
The optional fully qualified name of the profile you want this profile to inherit settings from in {Partition}/{ProfileName} format. If left blank, the default profile for the profile type will be used.
393
+
394
+

395
+

396
+
397
+
390
398
###### Server Username
391
399
Login credential for the F5 device. MUST be an Admin account.
392
400
@@ -927,6 +935,7 @@ TODO Certificate Store Configuration is an optional section. If this section doe
927
935
| Orchestrator | Select an approved orchestrator capable of managing `F5-PF-REST` certificates. Specifically, one with the `F5-PF-REST` capability. |
928
936
| IgnoreSSLWarning | Select this if you wish to ignore SSL warnings from F5 that occur during API calls when the site does not have a trusted certificate with the proper SAN bound to it. If you choose not to add this custom field, the default value of False will be assumed and SSL warnings will cause errors during orchestrator extension jobs. |
929
937
| UseTokenAuth | Select this if you wish to use F5's token authentication instead of basic authentication for all API requests. If you choose not to add this custom field, the default value of False will be assumed and basic authentication will be used for all API requests for all jobs. Setting this value to True will enable an initial basic authenticated request to acquire an authentication token, which will then be used for all subsequent API requests. |
938
+
| InheritedProfile | The optional fully qualified name of the profile you want this profile to inherit settings from in {Partition}/{ProfileName} format. If left blank, the default profile for the profile type will be used. |
930
939
| ServerUsername | Login credential for the F5 device. MUST be an Admin account. |
931
940
| ServerPassword | Login password for the F5 device. |
932
941
| ServerUseSsl | True if using https to access the F5 device. False if using http. |
@@ -956,6 +965,7 @@ TODO Certificate Store Configuration is an optional section. If this section doe
956
965
| Orchestrator | Select an approved orchestrator capable of managing `F5-PF-REST` certificates. Specifically, one with the `F5-PF-REST` capability. |
957
966
| Properties.IgnoreSSLWarning | Select this if you wish to ignore SSL warnings from F5 that occur during API calls when the site does not have a trusted certificate with the proper SAN bound to it. If you choose not to add this custom field, the default value of False will be assumed and SSL warnings will cause errors during orchestrator extension jobs. |
958
967
| Properties.UseTokenAuth | Select this if you wish to use F5's token authentication instead of basic authentication for all API requests. If you choose not to add this custom field, the default value of False will be assumed and basic authentication will be used for all API requests for all jobs. Setting this value to True will enable an initial basic authenticated request to acquire an authentication token, which will then be used for all subsequent API requests. |
968
+
| Properties.InheritedProfile | The optional fully qualified name of the profile you want this profile to inherit settings from in {Partition}/{ProfileName} format. If left blank, the default profile for the profile type will be used. |
959
969
| Properties.ServerUsername | Login credential for the F5 device. MUST be an Admin account. |
960
970
| Properties.ServerPassword | Login password for the F5 device. |
961
971
| Properties.ServerUseSsl | True if using https to access the F5 device. False if using http. |
Copy file name to clipboardExpand all lines: scripts/store_types/bash/curl_create_store_types.sh
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -219,6 +219,15 @@ curl -s -X POST "https://${KEYFACTOR_HOSTNAME}/${KEYFACTOR_API_PATH}/Certificate
219
219
"Required": true,
220
220
"Description": "Select this if you wish to use F5's token authentication instead of basic authentication for all API requests. If you choose not to add this custom field, the default value of False will be assumed and basic authentication will be used for all API requests for all jobs. Setting this value to True will enable an initial basic authenticated request to acquire an authentication token, which will then be used for all subsequent API requests."
221
221
},
222
+
{
223
+
"Name": "InheritedProfile",
224
+
"DisplayName": "Profile to Inherit",
225
+
"Type": "String",
226
+
"DependsOn": "",
227
+
"DefaultValue": "",
228
+
"Required": false,
229
+
"Description": "The optional fully qualified name of the profile you want this profile to inherit settings from in {Partition}/{ProfileName} format. If left blank, the default profile for the profile type will be used."
Copy file name to clipboardExpand all lines: scripts/store_types/powershell/restmethod_create_store_types.ps1
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -219,6 +219,15 @@ $Body = @'
219
219
"Required": true,
220
220
"Description": "Select this if you wish to use F5's token authentication instead of basic authentication for all API requests. If you choose not to add this custom field, the default value of False will be assumed and basic authentication will be used for all API requests for all jobs. Setting this value to True will enable an initial basic authenticated request to acquire an authentication token, which will then be used for all subsequent API requests."
221
221
},
222
+
{
223
+
"Name": "InheritedProfile",
224
+
"DisplayName": "Profile to Inherit",
225
+
"Type": "String",
226
+
"DependsOn": "",
227
+
"DefaultValue": "",
228
+
"Required": false,
229
+
"Description": "The optional fully qualified name of the profile you want this profile to inherit settings from in {Partition}/{ProfileName} format. If left blank, the default profile for the profile type will be used."
0 commit comments