diff --git a/website/docs/cloud-docs/workspaces/state.mdx b/website/docs/cloud-docs/workspaces/state.mdx index 58cddc95d..2499ea425 100644 --- a/website/docs/cloud-docs/workspaces/state.mdx +++ b/website/docs/cloud-docs/workspaces/state.mdx @@ -232,16 +232,13 @@ By default, new workspaces in HCP Terraform do not allow other workspaces to acc To configure a `tfe_outputs` data source that references an HCP Terraform workspace, specify the organization and workspace in the `config` argument. + You must still properly configure the `tfe` provider with a valid authentication token and correct permissions to HCP Terraform. ```hcl data "tfe_outputs" "vpc" { - config = { - organization = "example_corp" - workspaces = { - name = "vpc-prod" - } - } + organization = "example_corp" + workspace = "vpc-prod" } resource "aws_instance" "redis_server" {