vault/enos/modules/vault_run_blackbox_test/plugin.tf
Vault Automation a3bc0a3078
(enos): Add LDAP secrets engine blackbox tests to Plugin Scenario (#13072) (#13293)
* 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>
2026-03-23 14:22:46 +00:00

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
} : {}
}