You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/enos/ci/bootstrap/variables.tf

17 lines
575 B

# Copyright (c) HashiCorp, Inc.
# 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 'boundary', 'boundary-enterprise', or 'boundary-hcp'"
type = string
validation {
condition = contains(["boundary", "boundary-enterprise", "boundary-hcp"], var.repository)
error_message = "Repository must be one of either 'boundary', 'boundary-enterprise', or 'boundary-hcp'"
}
}