Skip to content

Latest commit

 

History

History
107 lines (80 loc) · 1.96 KB

oci_streaming_connect_harness.md

File metadata and controls

107 lines (80 loc) · 1.96 KB

oci_streaming_connect_harness

back

Index

Terraform

terraform {
  required_providers {
    oci = ">= 4.21.0"
  }
}

top

Example Usage

module "oci_streaming_connect_harness" {
  source = "./modules/oci/d/oci_streaming_connect_harness"

  # connect_harness_id - (required) is a type of string
  connect_harness_id = null
}

top

Variables

variable "connect_harness_id" {
  description = "(required)"
  type        = string
}

top

Datasource

data "oci_streaming_connect_harness" "this" {
  # connect_harness_id - (required) is a type of string
  connect_harness_id = var.connect_harness_id
}

top

Outputs

output "compartment_id" {
  description = "returns a string"
  value       = data.oci_streaming_connect_harness.this.compartment_id
}

output "defined_tags" {
  description = "returns a map of string"
  value       = data.oci_streaming_connect_harness.this.defined_tags
}

output "freeform_tags" {
  description = "returns a map of string"
  value       = data.oci_streaming_connect_harness.this.freeform_tags
}

output "id" {
  description = "returns a string"
  value       = data.oci_streaming_connect_harness.this.id
}

output "lifecycle_state_details" {
  description = "returns a string"
  value       = data.oci_streaming_connect_harness.this.lifecycle_state_details
}

output "name" {
  description = "returns a string"
  value       = data.oci_streaming_connect_harness.this.name
}

output "state" {
  description = "returns a string"
  value       = data.oci_streaming_connect_harness.this.state
}

output "time_created" {
  description = "returns a string"
  value       = data.oci_streaming_connect_harness.this.time_created
}

output "this" {
  value = oci_streaming_connect_harness.this
}

top