Skip to content

Latest commit

 

History

History
67 lines (53 loc) · 1.71 KB

schema_group_headline.md

File metadata and controls

67 lines (53 loc) · 1.71 KB
page_title subcategory description
epilot-schema_schema_group_headline Resource - terraform-provider-epilot-schema
SchemaGroupHeadline Resource

epilot-schema_schema_group_headline (Resource)

SchemaGroupHeadline Resource

Example Usage

resource "epilot-schema_schema_group_headline" "my_schemagroupheadline" {
  divider        = "top_divider"
  enable_divider = true
  group          = "...my_group..."
  id             = "2668f09e-37d5-44d1-a8bd-74f30bb9e291"
  label          = "...my_label..."
  layout         = "...my_layout..."
  manifest = [
    "123e4567-e89b-12d3-a456-426614174000"
  ]
  name  = "...my_name..."
  order = 4
  purpose = [
    "taxonomy-slug:classification-slug"
  ]
  schema = "contact"
  type   = "headline"
}

Schema

Required

  • group (String) The group of headline attribute
  • label (String)
  • name (String)
  • type (String) must be "headline"

Optional

  • divider (String) must be one of ["top_divider", "bottom_divider"]
  • enable_divider (Boolean) Default: false
  • layout (String)
  • manifest (List of String) Manifest ID used to create/update the schema group headline
  • order (Number) The order of headline attribute
  • purpose (List of String)
  • schema (String) Schema slug the capability belongs to

Read-Only

  • composite_id (String) Schema Slug and the Schema Group ID
  • id (String) The ID of this resource.

Import

Import is supported using the following syntax:

terraform import epilot-schema_schema_group_headline.my_epilot-schema_schema_group_headline "contact:97644baa-083f-4e49-9188-fcff2ecaad7d"