Files
nomad/enos/modules/fetch_artifactory/outputs.tf
Juana De La Cuesta 4a75d2de63 Adjust the servers to be always linux instances (#25172)
* 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
2025-02-24 13:09:57 +01:00

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
}