vault/enos/ci/bootstrap/variables.tf
Mike Baum 0dd2f742ce
[QT-318] Add workflow dispatch trigger for bootstrap workflow, update ssh key name (#18174)
* 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
2022-12-02 14:29:20 -05:00

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'"
}
}