mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-27 10:00:32 -04:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
36 lines
829 B
HCL
36 lines
829 B
HCL
# Copyright IBM Corp. 2016, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
variable "vault_instance_count" {
|
|
type = number
|
|
description = "How many vault instances are in the cluster"
|
|
}
|
|
|
|
variable "vault_pods" {
|
|
type = list(object({
|
|
name = string
|
|
namespace = string
|
|
}))
|
|
description = "The vault instances for the cluster to verify"
|
|
}
|
|
|
|
variable "vault_bin_path" {
|
|
type = string
|
|
description = "The path to the vault binary"
|
|
default = "/bin/vault"
|
|
}
|
|
|
|
variable "vault_root_token" {
|
|
type = string
|
|
description = "The vault root token"
|
|
}
|
|
|
|
variable "kubeconfig_base64" {
|
|
type = string
|
|
description = "The base64 encoded version of the Kubernetes configuration file"
|
|
}
|
|
|
|
variable "context_name" {
|
|
type = string
|
|
description = "The name of the k8s context for Vault"
|
|
}
|