Skip to content

Latest commit

 

History

History
 
 

samples

Samples Using safeguard-ps

Sample scripts based on safeguard-ps. These scripts are meant to give ideas about how safeguard-ps may be used for automation or to solve problems.

safeguard-ps includes many custom cmdlets for exercising commonly scripted functionality. These cmdlets are often the best choice, but Invoke-SafeguardMethod can be used to call part of the Safeguard API whether or not there is a specific cmdlet that uses that endpoint. In fact, nearly every cmdlet in the safeguard-ps module is implemented using Invoke-SafeguardMethod.

Sample Scripts

  • certificate-user-demo.ps1

    A certificate is the best option for authenticating an non-human process. It can be a little tricky to set up a certificate user. This script demonstrates how to do it. The same sort of certificate user can be used with the Safeguard A2A API.

    This script demonstrates how to configure certificates in Safeguard so that you can authenticate to the API using a certificate user. It uses data from the data/CERTS directory. These certificates were generated by MakeCert.exe and probably aren't example, but they work. After create an certificate user and authenticating as that user, the sample cleans everything up. You will need to use the single character 'a' password when prompted to run this script.

  • new-test-entitlement.ps1

    This script creates an approver group, requester group, and an entitlement with the given name. The entitlement will have a Password, an SSH, and an RDP access policy in it. The Password access policy will be auto-approved. You just need to fill out the scopes and group memberships.

    This script is a good sample for showing how to use the Invoke-SafeguardMethod cmdlet directly.

  • fix-service-account-ssh-keys.ps1

    A sample script posted to correct specific problem that occurred in the Safeguard 2.2 upgrade. The API was used to automate the fix for the bug for our customers.