diff --git a/jfrog-oauth/main.tf b/jfrog-oauth/main.tf index b6f1583..8ceb3f7 100644 --- a/jfrog-oauth/main.tf +++ b/jfrog-oauth/main.tf @@ -75,3 +75,8 @@ 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 +} diff --git a/jfrog-token/main.tf b/jfrog-token/main.tf index a586148..42f0825 100644 --- a/jfrog-token/main.tf +++ b/jfrog-token/main.tf @@ -88,3 +88,8 @@ resource "coder_script" "jfrog" { }) run_on_start = true } + +output "access_token" { + description = "value of the JFrog access token" + value = artifactory_scoped_token.me.access_token +}