mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
* func: add possibility of having different binaries for server and clients * style: rename binaries modules * docs: update comments * fix: correct the token input variable for fetch binaries
18 lines
494 B
HCL
18 lines
494 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
output "nomad_local_binary" {
|
|
description = "Path where the binary will be placed"
|
|
value = var.download_binary ? local.local_binary : ""
|
|
}
|
|
|
|
output "artifact_url" {
|
|
description = "URL to fetch the artifact"
|
|
value = data.enos_artifactory_item.nomad.results[0].url
|
|
}
|
|
|
|
output "artifact_sha" {
|
|
description = "sha256 to fetch the artifact"
|
|
value = data.enos_artifactory_item.nomad.results[0].sha256
|
|
}
|