You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/tests/cli/boundary/_credentials.bash

84 lines
1.9 KiB

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
load _authorized_actions
function create_username_password_credential() {
local name=$1
local sid=$2
local user=$3
local pass=$4
export BP="${pass}"
boundary credentials create username-password \
-name $name \
-description 'test username password credential' \
-credential-store-id $sid \
-username $user \
-password env://BP
}
function create_username_password_domain_credential_with_domain() {
local name=$1
local sid=$2
local user=$3
local pass=$4
local domain=$5
export BP="${pass}"
boundary credentials create username-password-domain \
-name $name \
-description 'test username password domain credential with domain' \
-credential-store-id $sid \
-username $user \
-password env://BP \
-domain $domain
}
function create_username_password_domain_credential() {
local name=$1
local sid=$2
local user=$3
local pass=$4
export BP="${pass}"
boundary credentials create username-password-domain \
-name $name \
-description 'test username password domain credential with domain parsed from username' \
-credential-store-id $sid \
-username $user \
-password env://BP
}
function create_json_credential() {
local name=$1
local sid=$2
local args=$3
boundary credentials create json \
-name $name \
-description 'test json credential' \
-credential-store-id $sid \
$args
}
function read_credential() {
boundary credentials read -id $1 -format json
}
function delete_credential() {
boundary credentials delete -id $1 -format json
}
function list_credentials() {
boundary credentials list -credential-store-id $1 -format json
}
function credential_id() {
local name=$1
local sid=$2
strip $(list_credentials $sid | jq -c ".items[] | select(.name | contains(\"$name\")) | .[\"id\"]")
}