mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +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
575 B
HCL
18 lines
575 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
output "binary_path" {
|
|
description = "Binary's local path per requested OS"
|
|
value = { for os, res in module.fetch_artifact : os => res.nomad_local_binary }
|
|
}
|
|
|
|
output "artifact_url" {
|
|
description = "Binary's artifactory URL per requested OS"
|
|
value = { for os, res in module.fetch_artifact : os => res.artifact_url }
|
|
}
|
|
|
|
output "artifact_sha" {
|
|
description = "Binary's artifactory sha per requested OS"
|
|
value = { for os, res in module.fetch_artifact : os => res.artifact_sha }
|
|
}
|