Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* 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>
2025-10-21 15:20:20 -06:00

35 lines
944 B
HCL

# Copyright IBM Corp. 2016, 2025
# SPDX-License-Identifier: BUSL-1.1
variable "vault_addr" {
description = "The local vault API listen address"
type = string
}
variable "vault_root_token" {
description = "The vault root token"
type = string
}
variable "ui_test_filter" {
type = string
description = "A test filter to limit the ui tests to execute. Will be appended to the ember test command as '-f=<filter>'"
default = null
}
variable "vault_unseal_keys" {
description = "Base64 encoded recovery keys to use for the seal/unseal test"
type = list(string)
}
variable "vault_recovery_threshold" {
description = "The number of recovery keys to require when unsealing Vault"
type = string
}
variable "ui_run_tests" {
type = bool
description = "Whether to run the UI tests or not. If set to false a cluster will be created but no tests will be run"
default = true
}