Skip to main content

equinix_fabric_stream (Data Source)

Fabric V4 API compatible data resource that allow user to fetch Equinix Fabric Stream by UUID

Additional Documentation:

Example Usage

data "equinix_fabric_stream" "data_stream" {
stream_id = "<uuid_of_stream>"
}

output "stream_state" {
value = data.equinix_fabric_stream.data_stream.state
}

Schema

Required

  • stream_id (String) The uuid of the stream this data source should retrieve

Read-Only

  • assets_count (Number) Count of the streaming assets attached to the stream resource
  • change_log (Attributes) Details of the last change on the stream resource (see below for nested schema)
  • description (String) Customer-provided description of the stream resource
  • href (String) Equinix auto generated URI to the stream resource in Equinix Portal
  • id (String) The unique identifier of the resource
  • name (String) Customer-provided name of the stream resource
  • project (Attributes) Equinix Project attribute object (see below for nested schema)
  • state (String) Value representing provisioning status for the stream resource
  • stream_subscriptions_count (Number) Count of the client subscriptions on the stream resource
  • type (String) Equinix defined Streaming Type
  • uuid (String) Equinix-assigned unique id for the stream resource

Nested Schema for change_log

Read-Only:

  • created_by (String) User name of creator of the stream resource
  • created_by_email (String) Email of creator of the stream resource
  • created_by_full_name (String) Legal name of creator of the stream resource
  • created_date_time (String) Creation time of the stream resource
  • deleted_by (String) User name of deleter of the stream resource
  • deleted_by_email (String) Email of deleter of the stream resource
  • deleted_by_full_name (String) Legal name of deleter of the stream resource
  • deleted_date_time (String) Deletion time of the stream resource
  • updated_by (String) User name of last updater of the stream resource
  • updated_by_email (String) Email of last updater of the stream resource
  • updated_by_full_name (String) Legal name of last updater of the stream resource
  • updated_date_time (String) Last update time of the stream resource

Nested Schema for project

Read-Only:

  • project_id (String) Equinix Subscriber-assigned project ID
Was this page helpful?