2023-03-15 16:00:52 +00:00
|
|
|
# Copyright (c) HashiCorp, Inc.
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-08-23 19:53:41 +00:00
|
|
|
# Shim module since CRT provided things will use the crt_bundle_path variable
|
|
|
|
variable "bundle_path" {
|
|
|
|
default = "/tmp/vault.zip"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "build_tags" {
|
|
|
|
default = ["ui"]
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "goarch" {
|
|
|
|
type = string
|
|
|
|
description = "The Go architecture target"
|
|
|
|
default = "amd64"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "goos" {
|
|
|
|
type = string
|
|
|
|
description = "The Go OS target"
|
|
|
|
default = "linux"
|
|
|
|
}
|
2022-10-17 23:47:37 +00:00
|
|
|
|
|
|
|
variable "artifactory_host" { default = null }
|
|
|
|
variable "artifactory_repo" { default = null }
|
|
|
|
variable "artifactory_username" { default = null }
|
|
|
|
variable "artifactory_token" { default = null }
|
|
|
|
variable "arch" {
|
|
|
|
default = null
|
|
|
|
}
|
|
|
|
variable "artifact_path" {
|
|
|
|
default = null
|
|
|
|
}
|
|
|
|
variable "artifact_type" {
|
|
|
|
default = null
|
|
|
|
}
|
|
|
|
variable "distro" {
|
|
|
|
default = null
|
|
|
|
}
|
|
|
|
variable "edition" {
|
|
|
|
default = null
|
|
|
|
}
|
|
|
|
variable "instance_type" {
|
|
|
|
default = null
|
|
|
|
}
|
|
|
|
variable "revision" {
|
|
|
|
default = null
|
|
|
|
}
|
2022-11-16 19:23:58 +00:00
|
|
|
variable "product_version" {
|
2022-10-17 23:47:37 +00:00
|
|
|
default = null
|
|
|
|
}
|