published on Thursday, May 7, 2026 by rootlyhq
published on Thursday, May 7, 2026 by rootlyhq
Example Usage
resource "rootly_catalog_checklist_template" "production_readiness" {
catalog_id = rootly_catalog.customer_tier.id
name = "Production Readiness"
}
Create CatalogChecklistTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CatalogChecklistTemplate(name: string, args?: CatalogChecklistTemplateArgs, opts?: CustomResourceOptions);@overload
def CatalogChecklistTemplate(resource_name: str,
args: Optional[CatalogChecklistTemplateArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def CatalogChecklistTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
catalog_type: Optional[str] = None,
description: Optional[str] = None,
fields: Optional[Sequence[CatalogChecklistTemplateFieldArgs]] = None,
name: Optional[str] = None,
owners: Optional[Sequence[CatalogChecklistTemplateOwnerArgs]] = None,
scope_id: Optional[str] = None,
scope_type: Optional[str] = None,
slug: Optional[str] = None)func NewCatalogChecklistTemplate(ctx *Context, name string, args *CatalogChecklistTemplateArgs, opts ...ResourceOption) (*CatalogChecklistTemplate, error)public CatalogChecklistTemplate(string name, CatalogChecklistTemplateArgs? args = null, CustomResourceOptions? opts = null)
public CatalogChecklistTemplate(String name, CatalogChecklistTemplateArgs args)
public CatalogChecklistTemplate(String name, CatalogChecklistTemplateArgs args, CustomResourceOptions options)
type: rootly:CatalogChecklistTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CatalogChecklistTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CatalogChecklistTemplateArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CatalogChecklistTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CatalogChecklistTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CatalogChecklistTemplateArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var catalogChecklistTemplateResource = new Rootly.CatalogChecklistTemplate("catalogChecklistTemplateResource", new()
{
CatalogType = "string",
Description = "string",
Fields = new[]
{
new Rootly.Inputs.CatalogChecklistTemplateFieldArgs
{
CatalogPropertyId = "string",
FieldKey = "string",
FieldSource = "string",
},
},
Name = "string",
Owners = new[]
{
new Rootly.Inputs.CatalogChecklistTemplateOwnerArgs
{
Id = "string",
Type = "string",
},
},
ScopeId = "string",
ScopeType = "string",
Slug = "string",
});
example, err := rootly.NewCatalogChecklistTemplate(ctx, "catalogChecklistTemplateResource", &rootly.CatalogChecklistTemplateArgs{
CatalogType: pulumi.String("string"),
Description: pulumi.String("string"),
Fields: rootly.CatalogChecklistTemplateFieldArray{
&rootly.CatalogChecklistTemplateFieldArgs{
CatalogPropertyId: pulumi.String("string"),
FieldKey: pulumi.String("string"),
FieldSource: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Owners: rootly.CatalogChecklistTemplateOwnerArray{
&rootly.CatalogChecklistTemplateOwnerArgs{
Id: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
ScopeId: pulumi.String("string"),
ScopeType: pulumi.String("string"),
Slug: pulumi.String("string"),
})
var catalogChecklistTemplateResource = new CatalogChecklistTemplate("catalogChecklistTemplateResource", CatalogChecklistTemplateArgs.builder()
.catalogType("string")
.description("string")
.fields(CatalogChecklistTemplateFieldArgs.builder()
.catalogPropertyId("string")
.fieldKey("string")
.fieldSource("string")
.build())
.name("string")
.owners(CatalogChecklistTemplateOwnerArgs.builder()
.id("string")
.type("string")
.build())
.scopeId("string")
.scopeType("string")
.slug("string")
.build());
catalog_checklist_template_resource = rootly.CatalogChecklistTemplate("catalogChecklistTemplateResource",
catalog_type="string",
description="string",
fields=[{
"catalog_property_id": "string",
"field_key": "string",
"field_source": "string",
}],
name="string",
owners=[{
"id": "string",
"type": "string",
}],
scope_id="string",
scope_type="string",
slug="string")
const catalogChecklistTemplateResource = new rootly.CatalogChecklistTemplate("catalogChecklistTemplateResource", {
catalogType: "string",
description: "string",
fields: [{
catalogPropertyId: "string",
fieldKey: "string",
fieldSource: "string",
}],
name: "string",
owners: [{
id: "string",
type: "string",
}],
scopeId: "string",
scopeType: "string",
slug: "string",
});
type: rootly:CatalogChecklistTemplate
properties:
catalogType: string
description: string
fields:
- catalogPropertyId: string
fieldKey: string
fieldSource: string
name: string
owners:
- id: string
type: string
scopeId: string
scopeType: string
slug: string
CatalogChecklistTemplate Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CatalogChecklistTemplate resource accepts the following input properties:
- Catalog
Type string - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - Description string
- The description of the checklist template
- Fields
List<Catalog
Checklist Template Field> - Template fields in position order
- Name string
- The name of the checklist template
- Owners
List<Catalog
Checklist Template Owner> - Template owners
- Scope
Id string - The scope ID
- Scope
Type string - The scope type. Value must be one of
Team,Catalog. - Slug string
- The slug of the checklist template
- Catalog
Type string - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - Description string
- The description of the checklist template
- Fields
[]Catalog
Checklist Template Field Args - Template fields in position order
- Name string
- The name of the checklist template
- Owners
[]Catalog
Checklist Template Owner Args - Template owners
- Scope
Id string - The scope ID
- Scope
Type string - The scope type. Value must be one of
Team,Catalog. - Slug string
- The slug of the checklist template
- catalog
Type String - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description String
- The description of the checklist template
- fields
List<Catalog
Checklist Template Field> - Template fields in position order
- name String
- The name of the checklist template
- owners
List<Catalog
Checklist Template Owner> - Template owners
- scope
Id String - The scope ID
- scope
Type String - The scope type. Value must be one of
Team,Catalog. - slug String
- The slug of the checklist template
- catalog
Type string - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description string
- The description of the checklist template
- fields
Catalog
Checklist Template Field[] - Template fields in position order
- name string
- The name of the checklist template
- owners
Catalog
Checklist Template Owner[] - Template owners
- scope
Id string - The scope ID
- scope
Type string - The scope type. Value must be one of
Team,Catalog. - slug string
- The slug of the checklist template
- catalog_
type str - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description str
- The description of the checklist template
- fields
Sequence[Catalog
Checklist Template Field Args] - Template fields in position order
- name str
- The name of the checklist template
- owners
Sequence[Catalog
Checklist Template Owner Args] - Template owners
- scope_
id str - The scope ID
- scope_
type str - The scope type. Value must be one of
Team,Catalog. - slug str
- The slug of the checklist template
- catalog
Type String - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description String
- The description of the checklist template
- fields List<Property Map>
- Template fields in position order
- name String
- The name of the checklist template
- owners List<Property Map>
- Template owners
- scope
Id String - The scope ID
- scope
Type String - The scope type. Value must be one of
Team,Catalog. - slug String
- The slug of the checklist template
Outputs
All input properties are implicitly available as output properties. Additionally, the CatalogChecklistTemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing CatalogChecklistTemplate Resource
Get an existing CatalogChecklistTemplate resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CatalogChecklistTemplateState, opts?: CustomResourceOptions): CatalogChecklistTemplate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
catalog_type: Optional[str] = None,
description: Optional[str] = None,
fields: Optional[Sequence[CatalogChecklistTemplateFieldArgs]] = None,
name: Optional[str] = None,
owners: Optional[Sequence[CatalogChecklistTemplateOwnerArgs]] = None,
scope_id: Optional[str] = None,
scope_type: Optional[str] = None,
slug: Optional[str] = None) -> CatalogChecklistTemplatefunc GetCatalogChecklistTemplate(ctx *Context, name string, id IDInput, state *CatalogChecklistTemplateState, opts ...ResourceOption) (*CatalogChecklistTemplate, error)public static CatalogChecklistTemplate Get(string name, Input<string> id, CatalogChecklistTemplateState? state, CustomResourceOptions? opts = null)public static CatalogChecklistTemplate get(String name, Output<String> id, CatalogChecklistTemplateState state, CustomResourceOptions options)resources: _: type: rootly:CatalogChecklistTemplate get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Catalog
Type string - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - Description string
- The description of the checklist template
- Fields
List<Catalog
Checklist Template Field> - Template fields in position order
- Name string
- The name of the checklist template
- Owners
List<Catalog
Checklist Template Owner> - Template owners
- Scope
Id string - The scope ID
- Scope
Type string - The scope type. Value must be one of
Team,Catalog. - Slug string
- The slug of the checklist template
- Catalog
Type string - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - Description string
- The description of the checklist template
- Fields
[]Catalog
Checklist Template Field Args - Template fields in position order
- Name string
- The name of the checklist template
- Owners
[]Catalog
Checklist Template Owner Args - Template owners
- Scope
Id string - The scope ID
- Scope
Type string - The scope type. Value must be one of
Team,Catalog. - Slug string
- The slug of the checklist template
- catalog
Type String - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description String
- The description of the checklist template
- fields
List<Catalog
Checklist Template Field> - Template fields in position order
- name String
- The name of the checklist template
- owners
List<Catalog
Checklist Template Owner> - Template owners
- scope
Id String - The scope ID
- scope
Type String - The scope type. Value must be one of
Team,Catalog. - slug String
- The slug of the checklist template
- catalog
Type string - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description string
- The description of the checklist template
- fields
Catalog
Checklist Template Field[] - Template fields in position order
- name string
- The name of the checklist template
- owners
Catalog
Checklist Template Owner[] - Template owners
- scope
Id string - The scope ID
- scope
Type string - The scope type. Value must be one of
Team,Catalog. - slug string
- The slug of the checklist template
- catalog_
type str - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description str
- The description of the checklist template
- fields
Sequence[Catalog
Checklist Template Field Args] - Template fields in position order
- name str
- The name of the checklist template
- owners
Sequence[Catalog
Checklist Template Owner Args] - Template owners
- scope_
id str - The scope ID
- scope_
type str - The scope type. Value must be one of
Team,Catalog. - slug str
- The slug of the checklist template
- catalog
Type String - The catalog type. Value must be one of
Service,Functionality,Environment,Group,Cause,IncidentType,Catalog. - description String
- The description of the checklist template
- fields List<Property Map>
- Template fields in position order
- name String
- The name of the checklist template
- owners List<Property Map>
- Template owners
- scope
Id String - The scope ID
- scope
Type String - The scope type. Value must be one of
Team,Catalog. - slug String
- The slug of the checklist template
Supporting Types
CatalogChecklistTemplateField, CatalogChecklistTemplateFieldArgs
- Catalog
Property stringId - ID of the catalog property for custom fields
- Field
Key string - Key identifying the field
- Field
Source string - Source of the field. Value must be one of
builtin,custom.
- Catalog
Property stringId - ID of the catalog property for custom fields
- Field
Key string - Key identifying the field
- Field
Source string - Source of the field. Value must be one of
builtin,custom.
- catalog
Property StringId - ID of the catalog property for custom fields
- field
Key String - Key identifying the field
- field
Source String - Source of the field. Value must be one of
builtin,custom.
- catalog
Property stringId - ID of the catalog property for custom fields
- field
Key string - Key identifying the field
- field
Source string - Source of the field. Value must be one of
builtin,custom.
- catalog_
property_ strid - ID of the catalog property for custom fields
- field_
key str - Key identifying the field
- field_
source str - Source of the field. Value must be one of
builtin,custom.
- catalog
Property StringId - ID of the catalog property for custom fields
- field
Key String - Key identifying the field
- field
Source String - Source of the field. Value must be one of
builtin,custom.
CatalogChecklistTemplateOwner, CatalogChecklistTemplateOwnerArgs
Import
rootly.CatalogChecklistTemplate can be imported using the import command.
$ pulumi import rootly:index/catalogChecklistTemplate:CatalogChecklistTemplate primary a816421c-6ceb-481a-87c4-585e47451f24
Or using an import block.
Locate the resource id in the web app, or retrieve it by listing resources through the API if it’s not visible in the web app.
HCL can be generated from the import block using the -generate-config-out flag.
pulumi preview -generate-config-out=generated.tf
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rootlyTerraform Provider.
published on Thursday, May 7, 2026 by rootlyhq
