github.com/hashicorp/vault/sdk@v0.11.0/helper/testcluster/consts.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: MPL-2.0 3 4 package testcluster 5 6 const ( 7 // EnvVaultLicenseCI is the name of an environment variable that contains 8 // a signed license string used for Vault Enterprise binary-based tests. 9 // The binary will be run with the env var VAULT_LICENSE set to this value. 10 EnvVaultLicenseCI = "VAULT_LICENSE_CI" 11 12 // DefaultCAFile is the path to the CA file. This is a docker-specific 13 // constant. TODO: needs to be moved to a more relevant place 14 DefaultCAFile = "/vault/config/ca.pem" 15 )