Now I am using terraform cloud.
I can set environment variables in workspace variables UI.
For example, I set AWS_REGIOIN environment variable.
I want to use this in output like;
output "aws-region" {
value = "${AWS_REGION}"
}
so from the other module, can use this.
Is this possible?