mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-11 09:51:16 -04:00
* Add LDAP secrets engine blackbox tests * Format * format * cleanup environment * Install ldap-utils in CI for LDAP domain provisioning * wrap in eventually * debugging * fix ip issues Co-authored-by: Luis (LT) Carbonell <lt.carbonell@hashicorp.com>
24 lines
542 B
HCL
24 lines
542 B
HCL
# Copyright IBM Corp. 2016, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
# Plugin blackbox test configuration
|
|
|
|
variable "plugin_config" {
|
|
type = object({
|
|
enabled = bool
|
|
type = string
|
|
})
|
|
description = "Plugin configuration for blackbox tests. Set enabled=true and specify plugin type to enable plugin tests."
|
|
default = {
|
|
enabled = false
|
|
type = ""
|
|
}
|
|
}
|
|
|
|
|
|
# Local variables for plugin environment setup
|
|
locals {
|
|
plugin_environment = var.plugin_config.enabled ? {
|
|
PLUGIN_TYPE = var.plugin_config.type
|
|
} : {}
|
|
}
|