observe_datastream

Fetches metadata for an existing Observe datastream.

Example Usage

data "observe_workspace" "default" {
  name = "Default"
}

data "observe_datastream" "example" {
  workspace = data.observe_workspace.default.oid
  name      = "My Datastream"
}

Schema

Required

  • workspace (String) OID of workspace datastream is contained in.

Optional

  • id (String) Datastream ID. Either name or id must be provided.

  • name (String) Datastream name. Must be unique within workspace.

Read-Only

  • dataset (String) The Observe ID for datastream origin dataset.

  • description (String) Datastream description.

  • icon_url (String) Icon image.

  • oid (String) The Observe ID for datastream.