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

38 lines
813 B
HCL

# Copyright IBM Corp. 2016, 2025
# SPDX-License-Identifier: BUSL-1.1
variable "hosts" {
description = "The target machines host addresses to use for the Vault cluster"
type = map(object({
ipv6 = string
private_ip = string
public_ip = string
}))
}
variable "ip_version" {
type = string
description = "IP Version (4 or 6)"
default = "4"
}
variable "ports" {
description = "Port configuration for services"
type = map(object({
port = string
description = string
}))
}
variable "ldap_version" {
type = string
description = "OpenLDAP Server Version to use"
default = "1.5.0"
}
variable "packages" {
type = list(string)
description = "A list of packages to install via the target host package manager"
default = []
}