mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* Added a scenario to test docker artifacts using the vault helm chart and a kind cluster * Addedt enos-k8s github workflow
34 lines
759 B
HCL
34 lines
759 B
HCL
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"
|
|
}
|