grafana.MessageTemplate
Explore with Pulumi AI
Manages Grafana Alerting notification template groups, including notification templates.
- Official documentation
- HTTP API
This resource requires Grafana 9.1.0 or later.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as grafana from "@pulumiverse/grafana";
const myTemplate = new grafana.alerting.MessageTemplate("my_template", {
name: "My Notification Template Group",
template: `{{define "custom.message" }}
template content
{{ end }}`,
});
import pulumi
import pulumiverse_grafana as grafana
my_template = grafana.alerting.MessageTemplate("my_template",
name="My Notification Template Group",
template="""{{define "custom.message" }}
template content
{{ end }}""")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-grafana/sdk/go/grafana/alerting"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := alerting.NewMessageTemplate(ctx, "my_template", &alerting.MessageTemplateArgs{
Name: pulumi.String("My Notification Template Group"),
Template: pulumi.String("{{define \"custom.message\" }}\n template content\n{{ end }}"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Grafana = Pulumiverse.Grafana;
return await Deployment.RunAsync(() =>
{
var myTemplate = new Grafana.Alerting.MessageTemplate("my_template", new()
{
Name = "My Notification Template Group",
Template = @"{{define ""custom.message"" }}
template content
{{ end }}",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.grafana.alerting.MessageTemplate;
import com.pulumi.grafana.alerting.MessageTemplateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var myTemplate = new MessageTemplate("myTemplate", MessageTemplateArgs.builder()
.name("My Notification Template Group")
.template("""
{{define "custom.message" }}
template content
{{ end }} """)
.build());
}
}
resources:
myTemplate:
type: grafana:alerting:MessageTemplate
name: my_template
properties:
name: My Notification Template Group
template: |-
{{define "custom.message" }}
template content
{{ end }}
Create MessageTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MessageTemplate(name: string, args: MessageTemplateArgs, opts?: CustomResourceOptions);
@overload
def MessageTemplate(resource_name: str,
args: MessageTemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MessageTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
disable_provenance: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
template: Optional[str] = None)
func NewMessageTemplate(ctx *Context, name string, args MessageTemplateArgs, opts ...ResourceOption) (*MessageTemplate, error)
public MessageTemplate(string name, MessageTemplateArgs args, CustomResourceOptions? opts = null)
public MessageTemplate(String name, MessageTemplateArgs args)
public MessageTemplate(String name, MessageTemplateArgs args, CustomResourceOptions options)
type: grafana:MessageTemplate
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 MessageTemplateArgs
- 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 MessageTemplateArgs
- 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 MessageTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MessageTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MessageTemplateArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MessageTemplate 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 MessageTemplate resource accepts the following input properties:
- Template string
- The content of the notification template group.
- Disable
Provenance bool - Name string
- The name of the notification template group.
- Org
Id string - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- Template string
- The content of the notification template group.
- Disable
Provenance bool - Name string
- The name of the notification template group.
- Org
Id string - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template String
- The content of the notification template group.
- disable
Provenance Boolean - name String
- The name of the notification template group.
- org
Id String - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template string
- The content of the notification template group.
- disable
Provenance boolean - name string
- The name of the notification template group.
- org
Id string - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template str
- The content of the notification template group.
- disable_
provenance bool - name str
- The name of the notification template group.
- org_
id str - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template String
- The content of the notification template group.
- disable
Provenance Boolean - name String
- The name of the notification template group.
- org
Id String - The Organization ID. If not set, the Org ID defined in the provider block will be used.
Outputs
All input properties are implicitly available as output properties. Additionally, the MessageTemplate 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 MessageTemplate Resource
Get an existing MessageTemplate 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?: MessageTemplateState, opts?: CustomResourceOptions): MessageTemplate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
disable_provenance: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
template: Optional[str] = None) -> MessageTemplate
func GetMessageTemplate(ctx *Context, name string, id IDInput, state *MessageTemplateState, opts ...ResourceOption) (*MessageTemplate, error)
public static MessageTemplate Get(string name, Input<string> id, MessageTemplateState? state, CustomResourceOptions? opts = null)
public static MessageTemplate get(String name, Output<String> id, MessageTemplateState state, CustomResourceOptions options)
resources: _: type: grafana:MessageTemplate 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.
- Disable
Provenance bool - Name string
- The name of the notification template group.
- Org
Id string - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- Template string
- The content of the notification template group.
- Disable
Provenance bool - Name string
- The name of the notification template group.
- Org
Id string - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- Template string
- The content of the notification template group.
- disable
Provenance Boolean - name String
- The name of the notification template group.
- org
Id String - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template String
- The content of the notification template group.
- disable
Provenance boolean - name string
- The name of the notification template group.
- org
Id string - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template string
- The content of the notification template group.
- disable_
provenance bool - name str
- The name of the notification template group.
- org_
id str - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template str
- The content of the notification template group.
- disable
Provenance Boolean - name String
- The name of the notification template group.
- org
Id String - The Organization ID. If not set, the Org ID defined in the provider block will be used.
- template String
- The content of the notification template group.
Import
$ pulumi import grafana:index/messageTemplate:MessageTemplate name "{{ name }}"
$ pulumi import grafana:index/messageTemplate:MessageTemplate name "{{ orgID }}:{{ name }}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- grafana pulumiverse/pulumi-grafana
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
grafana
Terraform Provider.