Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 2.57 KB

app_blueprint_catalog_item.md

File metadata and controls

65 lines (51 loc) · 2.57 KB
page_title subcategory description
morpheus_app_blueprint_catalog_item Resource - terraform-provider-morpheus
Provides a Morpheus AppBlueprint catalog item resource

morpheus_app_blueprint_catalog_item

Provides a Morpheus AppBlueprint catalog item resource

Example Usage

resource "morpheus_app_blueprint_catalog_item" "tf_example_app_blueprint_catalog_item" {
  name                 = "tfexample_app_blueprint_catalog"
  description          = "terraform example app blueprint catalog item"
  logo_image_path      = "tfexample.png"
  logo_image_name      = "tfexample.png"
  dark_logo_image_path = "tfexampledark.png"
  dark_logo_image_name = "tfexampledark.png"
  enabled              = true
  featured             = true
  labels               = ["aws", "demo", "testing"]
  content              = file("${path.module}/catalog-data.md")
  blueprint_id         = 5
  option_type_ids      = [2056, 2006, 2058]
  app_spec             = file("${path.module}/appSpec.yaml")
}

Schema

Required

  • app_spec (String) The app spec associated with the app blueprint catalog item
  • blueprint_id (Number) The id of the blueprint to associate with the app blueprint catalog item
  • name (String) The name of the app blueprint catalog item

Optional

  • category (String) The category of the app blueprint catalog item
  • content (String) The markdown content associated with the app blueprint catalog item
  • dark_logo_image_name (String) The file name of the app blueprint catalog item dark mode logo image
  • dark_logo_image_path (String) The file path of the app blueprint catalog item dark mode logo image including the file name
  • description (String) The description of the app blueprint catalog item
  • enabled (Boolean) Whether the app blueprint catalog item is enabled
  • featured (Boolean) Whether the app blueprint catalog item is featured
  • labels (Set of String) The organization labels associated with the catalog item (Only supported on Morpheus 5.5.3 or higher)
  • logo_image_name (String) The file name of the app blueprint catalog item logo image
  • logo_image_path (String) The file path of the app blueprint catalog item logo image including the file name
  • option_type_ids (List of Number) The list of option type ids associated with the app blueprint catalog item

Read-Only

  • id (String) The ID of the app blueprint catalog item

Import

Import is supported using the following syntax:

terraform import morpheus_app_blueprint_catalog_item.tf_example_app_blueprint_catalog_item 1