equinix_fabric_stream (Resource)
Fabric V4 API compatible resource allows creation and management of Equinix Fabric Stream
Additional Documentation:
- Getting Started: https://docs.equinix.com/observability/streaming-data/integratewithsink/
- API: https://docs.equinix.com/api-catalog/fabricv4/#tag/Streams
Example Usage
resource "equinix_fabric_stream" "new_stream" {
type = "TELEMETRY_STREAM"
name = "<name_of_stream_resource>"
description = "<description_of_stream_resource>"
project = {
project_id = "<destination_project_id_for_stream"
}
}
output "stream_state" {
value = equinix_fabric_stream.new_stream.state
}
Schema
Required
description(String) Customer-provided description of the stream resourcename(String) Customer-provided name of the stream resourceproject(Attributes) Equinix Project attribute object (see below for nested schema)type(String) Equinix defined Streaming Type
Optional
timeouts(Attributes) (see below for nested schema)
Read-Only
assets_count(Number) Count of the streaming assets attached to the stream resourcechange_log(Attributes) Details of the last change on the stream resource (see below for nested schema)href(String) Equinix auto generated URI to the stream resource in Equinix Portalid(String) The unique identifier of the resourcestate(String) Value representing provisioning status for the stream resourcestream_subscriptions_count(Number) Count of the client subscriptions on the stream resourceuuid(String) Equinix-assigned unique id for the stream resource
Nested Schema for project
Required:
project_id(String) Equinix Subscriber-assigned project ID
Nested Schema for timeouts
Optional:
create(String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).delete(String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.read(String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.update(String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Nested Schema for change_log
Read-Only:
created_by(String) User name of creator of the stream resourcecreated_by_email(String) Email of creator of the stream resourcecreated_by_full_name(String) Legal name of creator of the stream resourcecreated_date_time(String) Creation time of the stream resourcedeleted_by(String) User name of deleter of the stream resourcedeleted_by_email(String) Email of deleter of the stream resourcedeleted_by_full_name(String) Legal name of deleter of the stream resourcedeleted_date_time(String) Deletion time of the stream resourceupdated_by(String) User name of last updater of the stream resourceupdated_by_email(String) Email of last updater of the stream resourceupdated_by_full_name(String) Legal name of last updater of the stream resourceupdated_date_time(String) Last update time of the stream resource