backport of commit d634700c9e (#22965)

Co-authored-by: Ryan Cragun <me@ryan.ec>
This commit is contained in:
hc-github-team-secure-vault-core
2023-09-11 14:22:18 -04:00
committed by GitHub
parent 8ba68ca4c2
commit 8a37264de0

View File

@@ -3,26 +3,12 @@ locals {
// file name extensions for the install packages of vault for the various architectures, distributions and editions
package_extensions = {
amd64 = {
ubuntu = {
# "oss" = "-1_amd64.deb"
"ent" = "-1_amd64.deb"
"ent.hsm" = "-1_amd64.deb"
}
rhel = {
# "oss" = "-1.x86_64.rpm"
"ent" = "-1.x86_64.rpm"
"ent.hsm" = "-1.x86_64.rpm"
}
ubuntu = "-1_amd64.deb"
rhel = "-1.x86_64.rpm"
}
arm64 = {
ubuntu = {
# "oss" = "-1_arm64.deb"
"ent" = "-1_arm64.deb"
}
rhel = {
# "oss" = "-1.aarch64.rpm"
"ent" = "-1.aarch64.rpm"
}
ubuntu = "-1_arm64.deb"
rhel = "-1.aarch64.rpm"
}
}
@@ -34,17 +20,19 @@ locals {
ubuntu = {
"oss" = "vault_"
"ent" = "vault-enterprise_",
"ent.fips1402" = "vault-enterprise-fips1402_",
"ent.hsm" = "vault-enterprise-hsm_",
"ent.hsm.fips1402" = "vault-enterprise-hsm-fips1402_",
},
rhel = {
"oss" = "vault-"
"ent" = "vault-enterprise-",
"ent.fips1402" = "vault-enterprise-fips1402-",
"ent.hsm" = "vault-enterprise-hsm-",
"ent.hsm.fips1402" = "vault-enterprise-hsm-fips1402-",
}
}
artifact_types = ["package", "bundle"]
// edition --> artifact name edition
artifact_name_edition = {
"oss" = ""
@@ -55,6 +43,6 @@ locals {
}
artifact_name_prefix = var.artifact_type == "package" ? local.artifact_package_release_names[var.distro][var.edition] : "vault_"
artifact_name_extension = var.artifact_type == "package" ? local.package_extensions[var.arch][var.distro][var.edition] : "_linux_${var.arch}.zip"
artifact_name_extension = var.artifact_type == "package" ? local.package_extensions[var.arch][var.distro] : "_linux_${var.arch}.zip"
artifact_name = var.artifact_type == "package" ? "${local.artifact_name_prefix}${replace(local.artifact_version, "-", "~")}${local.artifact_name_extension}" : "${local.artifact_name_prefix}${var.product_version}${local.artifact_name_extension}"
}