Skip to content

Commit 8b52b08

Browse files
authored
Merge pull request #274 from Keyfactor/release-1.8
Release 1.8.0
2 parents 8627008 + 91e244b commit 8b52b08

9 files changed

+1284
-0
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# v1.8.0
2+
3+
## Features
4+
5+
### CLI
6+
7+
- `migrate check --pam-usage`: Looks up usage of a named PAM Provider, and returns the store IDs of all stores using the Provider. Used in conjunction with the `migrate pam` command.
8+
- `migrate pam`: Will migrate legacy CyberArk PAM Provider usage (named "CyberArk") to the "CyberArk-SdkCredentialProvider" type when prompted with a Store ID for a certificate store using a "CyberArk" provider
9+
110
# v1.7.0
211

312
## Features
Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
[
2+
{
3+
"Id": 6,
4+
"Name": "migrate-from",
5+
"Area": 1,
6+
"ProviderType": {
7+
"Id": "16fc28fa-d2e4-4152-9895-ebf261b011b5",
8+
"Name": "CyberArk",
9+
"ProviderTypeParams": [
10+
{
11+
"Id": 1,
12+
"Name": "Safe",
13+
"DisplayName": "PrivateArk Safe",
14+
"DataType": 1,
15+
"InstanceLevel": false,
16+
"ProviderType": null
17+
},
18+
{
19+
"Id": 2,
20+
"Name": "Folder",
21+
"DisplayName": "PrivateArk Folder Name",
22+
"DataType": 1,
23+
"InstanceLevel": true,
24+
"ProviderType": null
25+
},
26+
{
27+
"Id": 3,
28+
"Name": "Object",
29+
"DisplayName": "PrivateArk Protected Password Name",
30+
"DataType": 1,
31+
"InstanceLevel": true,
32+
"ProviderType": null
33+
},
34+
{
35+
"Id": 4,
36+
"Name": "AppId",
37+
"DisplayName": "Application ID",
38+
"DataType": 1,
39+
"InstanceLevel": false,
40+
"ProviderType": null
41+
}
42+
]
43+
},
44+
"ProviderTypeParamValues": [
45+
{
46+
"Id": 69,
47+
"Value": "safe",
48+
"InstanceId": null,
49+
"InstanceGuid": null,
50+
"ProviderTypeParam": {
51+
"Id": 1,
52+
"Name": "Safe",
53+
"DisplayName": "PrivateArk Safe",
54+
"DataType": 1,
55+
"InstanceLevel": false
56+
}
57+
},
58+
{
59+
"Id": 70,
60+
"Value": "appid",
61+
"InstanceId": null,
62+
"InstanceGuid": null,
63+
"ProviderTypeParam": {
64+
"Id": 4,
65+
"Name": "AppId",
66+
"DisplayName": "Application ID",
67+
"DataType": 1,
68+
"InstanceLevel": false
69+
}
70+
},
71+
{
72+
"Id": 71,
73+
"Value": "folder1",
74+
"InstanceId": null,
75+
"InstanceGuid": "54b3dbea-4e2c-4cb2-9aa3-650b20dc8866",
76+
"ProviderTypeParam": {
77+
"Id": 2,
78+
"Name": "Folder",
79+
"DisplayName": "PrivateArk Folder Name",
80+
"DataType": 1,
81+
"InstanceLevel": true
82+
}
83+
},
84+
{
85+
"Id": 72,
86+
"Value": "name1",
87+
"InstanceId": null,
88+
"InstanceGuid": "54b3dbea-4e2c-4cb2-9aa3-650b20dc8866",
89+
"ProviderTypeParam": {
90+
"Id": 3,
91+
"Name": "Object",
92+
"DisplayName": "PrivateArk Protected Password Name",
93+
"DataType": 1,
94+
"InstanceLevel": true
95+
}
96+
},
97+
{
98+
"Id": 73,
99+
"Value": "folder3",
100+
"InstanceId": null,
101+
"InstanceGuid": "d64501b9-860f-4eaa-8c35-0b9594da759e",
102+
"ProviderTypeParam": {
103+
"Id": 2,
104+
"Name": "Folder",
105+
"DisplayName": "PrivateArk Folder Name",
106+
"DataType": 1,
107+
"InstanceLevel": true
108+
}
109+
},
110+
{
111+
"Id": 74,
112+
"Value": "name3",
113+
"InstanceId": null,
114+
"InstanceGuid": "d64501b9-860f-4eaa-8c35-0b9594da759e",
115+
"ProviderTypeParam": {
116+
"Id": 3,
117+
"Name": "Object",
118+
"DisplayName": "PrivateArk Protected Password Name",
119+
"DataType": 1,
120+
"InstanceLevel": true
121+
}
122+
}
123+
],
124+
"SecuredAreaId": null,
125+
"Remote": false
126+
}
127+
]

0 commit comments

Comments
 (0)