Files
nomad/enos/modules/fetch_binaries/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
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 }
}