Skip to content

Onboard pCloud Account

Here is an example workflow for onboarding a pCloud safe and creating a Safe:

  1. Install Ark SDK:
    go install github.com/cyberark/ark-sdk-golang
    
    Make sure that the PATH environment variable points to the go binary. For example:
    export PATH=$PATH:$(go env GOPATH)/bin
    
  2. Create a profile:
    • Interactively:
      ark configure
      
    • Silently:
      ark configure --silent --work-with-isp --isp-username myuser
      
  3. Log in to Ark:
    ark login --silent --isp-secret <my-ark-secret>
    
  4. Create a new safe:
    ark exec pcloud safes add-safe --safe-name=safe
    
  5. Create a new account in the Safe:
    ark exec pcloud accounts add-account --name account --safe-name safe --platform-id='UnixSSH' --username root --address 1.2.3.4 --secret-type=password --secret mypass