Skip to content

Latest commit

 

History

History
39 lines (36 loc) · 1.03 KB

File metadata and controls

39 lines (36 loc) · 1.03 KB

Resource Creation

resource "intersight_workflow_error_response_handler" "workflow_error_response_handler1" {
  name          = "workflow_error_response_handler1"
  platform_type = "UCSD"
  parameters {
    class_id            = "content.TextParameter"
    secure              = false
    accept_single_value = true
    object_type         = "content.TextParameter"
    name                = "show-pure"
    item_type           = "string"
    nr_type                = "string"
  }
  types {
    object_type = "content.ComplexType"
    parameters {
      class_id            = "content.TextParameter"
      secure              = false
      accept_single_value = true
      object_type         = "content.TextParameter"
      name                = "show-hitachi"
      item_type           = "string"
      nr_type                = "string"
    }
  }
  catalog {
    object_type = "workflow.Catalog"
    moid        = var.workflow_catalog
  }

}

variable "workflow_catalog" {
  type        = string
  description = "moid for workflow catalog"
}