// Package bslauth implements an f2 extension for working with BSL credentials // // # Usage // // BSL test user credentials for each environment (dev1, stage1, stage2) are // stored in the test-infra4 secret manager and mounted onto the rosa container // as part of the dsds nightly test runs. // // Add bslauth extension to test framework with `f2.WithExtensions(bslauth.New())` // // In test access credential values as below: // // auth = bslauth.FromContextT(ctx, t) // bsluser = auth.User(bslauth.BannerAdmin) // // username := bsluser.Username // password := bsluser.Password // organization := bsluser.organization package bslauth