Skip to content

Merge 1.8.0 to main #274

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

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# v1.8.0

## Features

### CLI

- `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.
- `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

# v1.7.0

## Features
Expand Down
127 changes: 127 additions & 0 deletions artifacts/pam/migrate-steps/step-1-get-provider.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
[
{
"Id": 6,
"Name": "migrate-from",
"Area": 1,
"ProviderType": {
"Id": "16fc28fa-d2e4-4152-9895-ebf261b011b5",
"Name": "CyberArk",
"ProviderTypeParams": [
{
"Id": 1,
"Name": "Safe",
"DisplayName": "PrivateArk Safe",
"DataType": 1,
"InstanceLevel": false,
"ProviderType": null
},
{
"Id": 2,
"Name": "Folder",
"DisplayName": "PrivateArk Folder Name",
"DataType": 1,
"InstanceLevel": true,
"ProviderType": null
},
{
"Id": 3,
"Name": "Object",
"DisplayName": "PrivateArk Protected Password Name",
"DataType": 1,
"InstanceLevel": true,
"ProviderType": null
},
{
"Id": 4,
"Name": "AppId",
"DisplayName": "Application ID",
"DataType": 1,
"InstanceLevel": false,
"ProviderType": null
}
]
},
"ProviderTypeParamValues": [
{
"Id": 69,
"Value": "safe",
"InstanceId": null,
"InstanceGuid": null,
"ProviderTypeParam": {
"Id": 1,
"Name": "Safe",
"DisplayName": "PrivateArk Safe",
"DataType": 1,
"InstanceLevel": false
}
},
{
"Id": 70,
"Value": "appid",
"InstanceId": null,
"InstanceGuid": null,
"ProviderTypeParam": {
"Id": 4,
"Name": "AppId",
"DisplayName": "Application ID",
"DataType": 1,
"InstanceLevel": false
}
},
{
"Id": 71,
"Value": "folder1",
"InstanceId": null,
"InstanceGuid": "54b3dbea-4e2c-4cb2-9aa3-650b20dc8866",
"ProviderTypeParam": {
"Id": 2,
"Name": "Folder",
"DisplayName": "PrivateArk Folder Name",
"DataType": 1,
"InstanceLevel": true
}
},
{
"Id": 72,
"Value": "name1",
"InstanceId": null,
"InstanceGuid": "54b3dbea-4e2c-4cb2-9aa3-650b20dc8866",
"ProviderTypeParam": {
"Id": 3,
"Name": "Object",
"DisplayName": "PrivateArk Protected Password Name",
"DataType": 1,
"InstanceLevel": true
}
},
{
"Id": 73,
"Value": "folder3",
"InstanceId": null,
"InstanceGuid": "d64501b9-860f-4eaa-8c35-0b9594da759e",
"ProviderTypeParam": {
"Id": 2,
"Name": "Folder",
"DisplayName": "PrivateArk Folder Name",
"DataType": 1,
"InstanceLevel": true
}
},
{
"Id": 74,
"Value": "name3",
"InstanceId": null,
"InstanceGuid": "d64501b9-860f-4eaa-8c35-0b9594da759e",
"ProviderTypeParam": {
"Id": 3,
"Name": "Object",
"DisplayName": "PrivateArk Protected Password Name",
"DataType": 1,
"InstanceLevel": true
}
}
],
"SecuredAreaId": null,
"Remote": false
}
]
Loading
Loading