---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "coder_provisioner Data Source - terraform-provider-coder"
subcategory: ""
description: |-
  Use this data source to get information about the Coder provisioner.
---

# coder_provisioner (Data Source)

Use this data source to get information about the Coder provisioner.

## Example Usage

```terraform
provider "coder" {}

data "coder_provisioner" "dev" {}

data "coder_workspace" "dev" {}

resource "coder_agent" "main" {
  arch = data.coder_provisioner.dev.arch
  os   = data.coder_provisioner.dev.os
  dir  = "/workspace"
  display_apps {
    vscode          = true
    vscode_insiders = false
    web_terminal    = true
    ssh_helper      = false
  }
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Read-Only

- `arch` (String) The architecture of the host. This exposes `runtime.GOARCH` (see [Go constants](https://pkg.go.dev/runtime#pkg-constants)).
- `id` (String) The ID of this resource.
- `os` (String) The operating system of the host. This exposes `runtime.GOOS` (see [Go constants](https://pkg.go.dev/runtime#pkg-constants)).