github.com/yorinasub17/go-cloud@v0.27.40/secrets/azurekeyvault/example_test.go (about)

     1  // Copyright 2019 The Go Cloud Development Kit Authors
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     https://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package azurekeyvault_test
    16  
    17  import (
    18  	"context"
    19  	"log"
    20  
    21  	"gocloud.dev/secrets"
    22  	"gocloud.dev/secrets/azurekeyvault"
    23  )
    24  
    25  func ExampleOpenKeeper() {
    26  	// PRAGMA: This example is used on gocloud.dev; PRAGMA comments adjust how it is shown and can be ignored.
    27  
    28  	// Makes a client to use with the Azure KeyVault API, using default
    29  	// authorization from the environment.
    30  	clientMaker := azurekeyvault.DefaultClientMaker
    31  
    32  	// Construct a *secrets.Keeper.
    33  	keeper, err := azurekeyvault.OpenKeeper(clientMaker, "https://mykeyvaultname.vault.azure.net/keys/mykeyname", nil)
    34  	if err != nil {
    35  		log.Fatal(err)
    36  	}
    37  	defer keeper.Close()
    38  }
    39  
    40  func Example_openFromURL() {
    41  	// PRAGMA: This example is used on gocloud.dev; PRAGMA comments adjust how it is shown and can be ignored.
    42  	// PRAGMA: On gocloud.dev, add a blank import: _ "gocloud.dev/secrets/azurekeyvault"
    43  	// PRAGMA: On gocloud.dev, hide lines until the next blank line.
    44  	ctx := context.Background()
    45  
    46  	// The "azurekeyvault" URL scheme is replaced with "https" to construct an Azure
    47  	// Key Vault keyID, as described in https://docs.microsoft.com/en-us/azure/key-vault/about-keys-secrets-and-certificates.
    48  	// You can add an optional "/{key-version}" to the path to use a specific
    49  	// version of the key; it defaults to the latest version.
    50  	keeper, err := secrets.OpenKeeper(ctx, "azurekeyvault://mykeyvaultname.vault.azure.net/keys/mykeyname")
    51  	if err != nil {
    52  		log.Fatal(err)
    53  	}
    54  	defer keeper.Close()
    55  }