PrivX is a lean and modern privileged access management solution to automate your AWS, Azure and GCP infrastructure access management in one multi-cloud solution. This Software Development Kit (SDK) offers a high-level abstraction to programmatically configure your PrivX instances.
Jump To:
PrivX REST API Reference
The latest version of SDK is available at master
branch of the repository. All development, including new features and bug fixes, take place on the master
branch using forking and pull requests as described in contribution guidelines.
Work in Progress
PrivX SDK composes API client from three independent layers:
restapi
generic HTTPS transport layeroauth
implements OAuth2 access token grant flowsapi/...
type-safe implementation of PrivX API
Here is a typical workflow explained with an example to setup the client:
// 1. Create Authorizer and Access Token Provider
func authorize() restapi.Authorizer {
auth := restapi.New(
/* use restapi options to config http */
/* the options can be referred from SDK Configuration providers section below*/
restapi.UseConfigFile("config.toml"),
restapi.UseEnvironment(),
)
return oauth.With(
auth,
// 1. Use config file option to configure authorizer
oauth.UseConfigFile("config.toml"),
// 2. Use environment variables option to configure authorizer
oauth.UseEnvironment(),
// 3. Use oauth options to configure authorizer
oauth.Access(/* ... */),
oauth.Secret(/* ... */),
)
}
// 2. Create HTTP transport for PrivX API
func curl() restapi.Connector {
return restapi.New(
restapi.Auth(authorize())
)
}
// 3. Create rolestore instance with API client/connector
roleStore := rolestore.New(curl())
As application developers you have three options to configure PrivX SDK
- explicitly
- using config files
- using environment variable
It is possible to cascade configurations.
// 1. Explicit configuration
curl := restapi.New(restapi.BaseURL(/* value */))
// 2. Use config files
curl := restapi.New(restapi.UseConfigFile(/* path to file */))
// 3. Environment variable
curl := restapi.New(restapi.UseEnvironment())
// 4. Cascade the configuration
curl := restapi.New(
// attempt to read data from config file
restapi.UseConfigFile(/* path to file */),
// attempt to read environment
restapi.UseEnvironment(),
// attempt to fetch data from command line flags
restapi.BaseURL(/* command line value */)
)
Please see available config option for restapi and oauth.
PrivX SDK UseConfigFile
support following config file format
[api]
# restapi.BaseURL(...)
base_url="https://your-instance.privx.io"
# restapi.X509(...)
api_ca_crt=""" PEM certificate chain """
[auth]
# oauth.Access(...)
api_client_id="00000000-0000-0000-0000-000000000000"
# oauth.Secret(...)
api_client_secret="some-random-base64"
# oauth.Digest(...)
oauth_client_id="privx-external"
oauth_client_secret="another-random-base64"
PrivX SDK UseEnvironment
support following environment variables
# restapi.BaseURL(...)
export PRIVX_API_BASE_URL=https://your-instance.privx.io
# oauth.Access(...)
export PRIVX_API_CLIENT_ID=00000000-0000-0000-0000-000000000000
# oauth.Secret(...)
export PRIVX_API_CLIENT_SECRET=some-random-base64
# oauth.Digest(...)
export PRIVX_API_OAUTH_CLIENT_ID=privx-external
export PRIVX_API_OAUTH_CLIENT_SECRET=another-random-base64
Usage of PrivX SDK requires API credential, which are available from your PrivX deployment: Settings > API Clients > Add API Client. Authorizer implement OAuth2 Resource Owner Password Grant
auth := oauth.WithClientID(/* ... */)
Alternatively, you can use api client on behalf of existing user using its credentials. Authorizer implements OAuth2 Authorization Code Grant
auth := oauth.WithCredential(/* ... */)
If your app needs to implement a flexible auth strategy that supports both. Use following method, it dynamically chooses a right strategy depending of available credentials
auth := oauth.With(/* ... */)
If you experience any issues with the library, please let us know via GitHub issues. We appreciate detailed and accurate reports that help us to identity and replicate the issue.
-
Specify the configuration of your environment. Include which operating system you use and the versions of runtime environments.
-
Attach logs, screenshots and exceptions, in possible.
-
Reveal the steps you took to reproduce the problem, include code snippet or links to your project.
The project is Apache 2.0 licensed and accepts contributions via GitHub pull requests:
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request