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/service-user-iam/variables.tf

12 lines
438 B

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
variable "repository" {
description = "The GitHub repository, either boundary, boundary-enterprise, or boundary-hcp"
type = string
validation {
condition = contains(["boundary", "boundary-enterprise", "boundary-hcp"], var.repository)
error_message = "Invalid repository, only boundary, boundary-enterprise, and boundary-hcp are supported"
}
}