backport of commit d634700c9e80871c607f894ae31a1b6187777e6c (#22966)
Co-authored-by: Ryan Cragun <me@ryan.ec>
This commit is contained in:
parent
3b5636d911
commit
79ec31895e
|
@ -6,26 +6,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"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -37,17 +23,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" = ""
|
||||
|
@ -58,6 +46,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}"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue