Output of TFC_AWS_RUN_ROLE_ARN

Hello, Is it possible to have TFC_AWS_RUN_ROLE_ARN be in the outputs ? I’ve tried adding it to variables then to outputs. However it always return “”. The variable is being set via TC variables section for the workspace.

Any help would be appreciated.

variable "TFC_AWS_RUN_ROLE_ARN" {
  type = string
  default = ""
}

output "tfc_aws_role_arn" {
  value = var.TFC_AWS_RUN_ROLE_ARN
}

The goal is to run terraform output and pass it to a file to then be used in another tool.