FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

VaultExt Module

Summary> An extenstion type for Vault module.

Type extensions

Type extension Description

this.Get

Full Usage: this.Get

Parameters:
    name : string

Returns: string

similar to tryGet but throws an exception if the variable with the given name is not available in the vault

Extended Type: Vault

name : string
Returns: string

this.TryGet

Full Usage: this.TryGet

Parameters:
    name : string

Returns: string option

try to retrieve the variable with the given name from the vault (decrypts the variable if needed)

Extended Type: Vault

name : string
Returns: string option