mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 11:37:04 +02:00
* Add Artifactory build to the matrix Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Update test scenarios Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Fix Terraform format Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Updates with verification Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Integrate variables from CRT inputs Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Latest update to add Artifactory support Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Address review feedback Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Enable Enos run in CRT workflow Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Remove unused variables Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Update Artifactory module Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Address review feedback Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com>
50 lines
941 B
HCL
50 lines
941 B
HCL
# 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 "instance_type" {
|
|
default = null
|
|
}
|
|
variable "revision" {
|
|
default = null
|
|
}
|
|
variable "vault_product_version" {
|
|
default = null
|
|
}
|