Skip to content

Latest commit

 

History

History
63 lines (49 loc) · 1.97 KB

instance_catalog_item.md

File metadata and controls

63 lines (49 loc) · 1.97 KB
page_title subcategory description
morpheus_instance_catalog_item Resource - terraform-provider-morpheus
Provides a Morpheus instance catalog item resource

morpheus_instance_catalog_item

Provides a Morpheus instance catalog item resource

Example Usage

resource "morpheus_instance_catalog_item" "tf_example_instance_catalog_item" {
  name        = "tfexample_instance_catalog"
  description = "terraform example instance catalog item"
  image_path  = "tfexample.png"
  image_name  = "tfexample.png"
  enabled     = true
  featured    = true
  content     = <<TFEOF
  {"name":"test"}
  TFEOF
  config      = <<TFEOF
  {"name":"test"}
  TFEOF
  visibility  = "private"
}

Schema

Required

  • config (String) The instance config associated with the instance catalog item
  • name (String) The name of the instance catalog item
  • visibility (String) The visibility of the instance catalog item (public or private)

Optional

  • category (String) The category of the instance catalog item
  • content (String) The markdown content associated with the instance catalog item
  • description (String) The description of the instance catalog item
  • enabled (Boolean) Whether the instance catalog item is enabled
  • featured (Boolean) Whether the instance catalog item is featured
  • image_name (String) The file name of the instance catalog item logo image
  • image_path (String) The file path of the instance catalog item logo image including the file name
  • labels (Set of String) The organization labels associated with the catalog item (Only supported on Morpheus 5.5.3 or higher)
  • option_type_ids (List of Number) The list of option type ids associated with the instance catalog item

Read-Only

  • id (String) The ID of the instance catalog item

Import

Import is supported using the following syntax:

terraform import morpheus_instance_catalog_item.tf_example_instance_catalog_item 1