diff --git a/README.md b/README.md
index 42d273a..ec38a26 100644
--- a/README.md
+++ b/README.md
@@ -137,4 +137,5 @@ The above custom role is similar to the "write" pre-existing role, but blocks ac
|------|-------------|
| [arn](#output\_arn) | The workspace IAM user ARN |
| [workspace\_id](#output\_workspace\_id) | The Terraform Cloud workspace ID |
+| [workspace\_name](#output\_workspace\_name) | The Terraform Cloud workspace name |
diff --git a/outputs.tf b/outputs.tf
index 0ea7bdd..a4b0450 100644
--- a/outputs.tf
+++ b/outputs.tf
@@ -3,6 +3,11 @@ output "arn" {
description = "The workspace IAM user ARN"
}
+output "workspace_name" {
+ value = tfe_workspace.default.name
+ description = "The Terraform Cloud workspace name"
+}
+
output "workspace_id" {
value = tfe_workspace.default.id
description = "The Terraform Cloud workspace ID"