Skip to content

DelineaXPM/dsv-sdk-go

Folders and files

NameName
Last commit message
Last commit date
Jan 23, 2025
Mar 10, 2025
Oct 24, 2022
Jan 23, 2025
Jan 23, 2025
Jan 23, 2024
Jan 17, 2025
Mar 10, 2025
Jan 23, 2025
Mar 10, 2025
Jan 23, 2025
Sep 1, 2022
Sep 1, 2022
Sep 1, 2022
Mar 10, 2025
Sep 1, 2022
Jan 23, 2025
Jan 23, 2025
Oct 24, 2022
Sep 1, 2022
Jun 20, 2023
Aug 3, 2024
Sep 1, 2022
Oct 24, 2022
Jan 23, 2025
May 24, 2022
Feb 6, 2025
Oct 25, 2022
Mar 28, 2025
Mar 28, 2025
Jan 23, 2025
Mar 10, 2025
Aug 7, 2023

Repository files navigation

The Delinea DevOps Secrets Vault SDK for Go

Tests

A Golang API and examples for Delinea DevOps Secrets Vault.

Configure

The API requires a Configuration object containing a ClientID, ClientSecret and Tenant:

type ClientCredential struct {
    ClientID, ClientSecret string
}

type Configuration struct {
    Credentials              ClientCredential
    Tenant, TLD, URLTemplate string
}

The unit tests populate Configuration from test_config.json:

config := new(Configuration)

if cj, err := ioutil.ReadFile("../test_config.json"); err == nil {
    json.Unmarshal(cj, &config)
}

tss := New(*config)

Create test_config.json:

{
  "credentials": {
    "clientId": "",
    "clientSecret": ""
  },
  "tenant": "mytenant"
}

Test

vault/role_test.go declares:

const roleName = "test-role"

The tests assume that roleName exists and has privilege to create, read, and delete a client, as well as create, read and delete secrets with a test: path prefix.

Use

Define a Configuration then use it to create an instance of Vault:

dsv := vault.New(vault.Configuration{
    ClientID:     os.Getenv("DSV_CLIENT_ID"),
    ClientSecret: os.Getenv("DSV_CLIENT_SECRET"),
    Tenant:       os.Getenv("DSV_TENANT"),
})
secret, err := dsv.Secret("path:of:the:secret")

if err != nil {
    log.Fatal("failure calling vault.Secret", err)
}

fmt.Print("the SSH public key is", secret.Data["public"])

Contributors

sheldonhull
Sheldonhull
amigus
Adam C. Migus
pacificcode
Bill Hamilton
maxsokolovsky
Max Sokolovsky
delineaKrehl
Tim Krehl
andrii-zakurenyi
Andrii Zakurenyi
michaelsauter
Michael Sauter
EndlessTrax
Ricky White
timothyfield
Tim Field