mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-08 21:21:32 +00:00
* Fix licensing on various files * Update packaging to use BUSL-1.1 * Update offset within config_test_helpers.go - Fix a test the same way it's been fixed on main/1.15
50 lines
958 B
HCL
50 lines
958 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
# 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"
|
|
}
|
|
|
|
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 "revision" {
|
|
default = null
|
|
}
|
|
variable "product_version" {
|
|
default = null
|
|
}
|