feat: add JFrog access token output to module output (#101)

This commit is contained in:
Muhammad Atif Ali
2023-11-15 18:15:00 +03:00
committed by GitHub
parent 8e3f48ce5c
commit 98bb94c5f0
5 changed files with 56 additions and 0 deletions

View File

@@ -75,3 +75,14 @@ resource "coder_script" "jfrog" {
})
run_on_start = true
}
output "access_token" {
description = "value of the JFrog access token"
value = data.coder_external_auth.jfrog.access_token
sensitive = true
}
output "username" {
description = "value of the JFrog username"
value = local.username
}