Files
vault/enos/modules/vault_test_ui/variables.tf
Steven Clark e3f09b8c6d Update licensing across various source files - 1.13 (#24675)
* Fix licensing on various files

* Update packaging to use BUSL-1.1

* Update offset within config_test_helpers.go

 - Fix a test the same way it's been fixed on main/1.15
2024-01-08 12:24:57 -05:00

35 lines
956 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
variable "vault_addr" {
description = "The host address for the vault instance to test"
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
}