mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 19:47:02 +02:00
* Added a workflow dispatch trigger for bootstrap workflow, updated ssh key name * Ensure the bootstrap workflow is only run for PRs that change the bootstrapping code
14 lines
438 B
HCL
14 lines
438 B
HCL
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'"
|
|
}
|
|
}
|