|
5 | 5 | <p align="center"> |
6 | 6 | <!-- Badges --> |
7 | 7 | <img src="https://img.shields.io/badge/integration_status-production-3D1973?style=flat-square" alt="Integration Status: production" /> |
8 | | -<a href="https://github.com/Keyfactor/digicert-metadata-sync-dev/releases"><img src="https://img.shields.io/github/v/release/Keyfactor/digicert-metadata-sync-dev?style=flat-square" alt="Release" /></a> |
9 | | -<img src="https://img.shields.io/github/issues/Keyfactor/digicert-metadata-sync-dev?style=flat-square" alt="Issues" /> |
10 | | -<img src="https://img.shields.io/github/downloads/Keyfactor/digicert-metadata-sync-dev/total?style=flat-square&label=downloads&color=28B905" alt="GitHub Downloads (all assets, all releases)" /> |
| 8 | +<a href="https://github.com/Keyfactor/digicert-metadata-sync/releases"><img src="https://img.shields.io/github/v/release/Keyfactor/digicert-metadata-sync?style=flat-square" alt="Release" /></a> |
| 9 | +<img src="https://img.shields.io/github/issues/Keyfactor/digicert-metadata-sync?style=flat-square" alt="Issues" /> |
| 10 | +<img src="https://img.shields.io/github/downloads/Keyfactor/digicert-metadata-sync/total?style=flat-square&label=downloads&color=28B905" alt="GitHub Downloads (all assets, all releases)" /> |
11 | 11 | </p> |
12 | 12 |
|
13 | 13 | <p align="center"> |
@@ -78,7 +78,7 @@ Before running, configure **`DigicertMetadataSync.dll.config`** and **`manualfie |
78 | 78 | - |
79 | 79 |
|
80 | 80 | ### Example `DigicertMetadataSync.dll.config` |
81 | | - |
| 81 | +File is available within the repository named as App.config (**should be renamed to DigicertMetadataSync.dll.config for actual use**). |
82 | 82 | ```xml |
83 | 83 | <?xml version="1.0" encoding="utf-8" ?> |
84 | 84 | <configuration> |
@@ -133,38 +133,37 @@ These map to Keyfactor’s Metadata Field schema and are optional unless your us |
133 | 133 | | `KeyfactorDefaultValue` | string | no | Default field value. | |
134 | 134 |
|
135 | 135 | ### Example `manualfields.json` |
136 | | - |
| 136 | +File is available within the repository. |
137 | 137 | ```json |
138 | 138 | { |
139 | 139 | "ManualFields": [ |
140 | 140 | { |
141 | | - "DigicertFieldName": "organization_contact.email", |
142 | | - "KeyfactorMetadataFieldName": "digicertorgemail", |
143 | | - "KeyfactorDescription": "DigiCert Requester Email", |
144 | | - "KeyfactorDataType": "String", |
145 | | - "KeyfactorHint": "[email protected]", |
| 141 | + "DigicertFieldName": "id", |
| 142 | + "KeyfactorMetadataFieldName": "DigicertID", |
| 143 | + "KeyfactorDescription": "Digicert Assigned Cert ID", |
| 144 | + "KeyfactorDataType": "Integer", |
| 145 | + "KeyfactorHint": "", |
146 | 146 | "KeyfactorAllowAPI": "True", |
147 | | - |
148 | | - "KeyfactorValidation": "^[A-Za-z0-9._%+-]+@example\.com$", |
149 | | - "KeyfactorMessage": "Use your @example.com address.", |
150 | | - "KeyfactorEnrollment": "Required", |
| 147 | + "KeyfactorValidation": "", |
| 148 | + "KeyfactorMessage": "", |
| 149 | + "KeyfactorEnrollment": "Optional", |
151 | 150 | "KeyfactorOptions": [], |
152 | | - "KeyfactorDefaultValue": "", |
153 | | - "KeyfactorDisplayOrder": 20 |
| 151 | + "KeyfactorDefaultValue": "" |
154 | 152 | } |
155 | 153 | ], |
156 | 154 | "CustomFields": [ |
157 | 155 | { |
158 | | - "DigicertFieldName": "Special_Multiple_Choice", |
159 | | - "KeyfactorMetadataFieldName": "Special_Multiple_Choice", |
160 | | - "KeyfactorDescription": "Special Multiple Choice (from DigiCert)", |
161 | | - "KeyfactorDataType": "Multiple Choice", |
162 | | - "KeyfactorHint": "Pick one", |
| 156 | + "DigicertFieldName": "Field2", |
| 157 | + "KeyfactorMetadataFieldName": "Field2", |
| 158 | + "KeyfactorDescription": "Test", |
| 159 | + "KeyfactorDataType": "String", |
| 160 | + "KeyfactorHint": "Pick one or more", |
163 | 161 | "KeyfactorAllowAPI": "True", |
164 | | - |
165 | | - "KeyfactorOptions": ["Cat","Dust","Hoseob","Kitty","Many cute cats","Meol"], |
| 162 | + "KeyfactorValidation": "", |
| 163 | + "KeyfactorMessage": "", |
166 | 164 | "KeyfactorEnrollment": "Optional", |
167 | | - "KeyfactorDisplayOrder": 30 |
| 165 | + "KeyfactorOptions": "", |
| 166 | + "KeyfactorDefaultValue": "Test" |
168 | 167 | } |
169 | 168 | ] |
170 | 169 | } |
|
0 commit comments