mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-25 03:11:40 +01:00
* 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>
17 lines
508 B
HCL
17 lines
508 B
HCL
# Copyright IBM Corp. 2016, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
variable "aws_ssh_public_key" {
|
|
description = "The public key to use for the ssh key"
|
|
type = string
|
|
}
|
|
|
|
variable "repository" {
|
|
description = "The repository to bootstrap the ci for, either 'vault' or 'vault-enterprise'"
|
|
type = string
|
|
validation {
|
|
condition = contains(["vault", "vault-enterprise"], var.repository)
|
|
error_message = "Repository must be one of either 'vault' or 'vault-enterprise'"
|
|
}
|
|
}
|