1. Packages
  2. Packages
  3. Gitlab Provider
  4. API Docs
  5. ProjectIntegrationMatrix
Viewing docs for GitLab v9.11.0
published on Tuesday, Apr 21, 2026 by Pulumi
gitlab logo
Viewing docs for GitLab v9.11.0
published on Tuesday, Apr 21, 2026 by Pulumi

    The gitlab.ProjectIntegrationMatrix resource manages the lifecycle of a project integration with Matrix.

    Upstream API: GitLab REST API docs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gitlab from "@pulumi/gitlab";
    
    const awesomeProject = new gitlab.Project("awesome_project", {
        name: "awesome_project",
        description: "My awesome project.",
        visibilityLevel: "public",
    });
    const matrix = new gitlab.ProjectIntegrationMatrix("matrix", {
        project: awesomeProject.id,
        hostname: "https://matrix.org",
        token: "your-matrix-token",
        room: "!abcdefg:matrix.org",
    });
    
    import pulumi
    import pulumi_gitlab as gitlab
    
    awesome_project = gitlab.Project("awesome_project",
        name="awesome_project",
        description="My awesome project.",
        visibility_level="public")
    matrix = gitlab.ProjectIntegrationMatrix("matrix",
        project=awesome_project.id,
        hostname="https://matrix.org",
        token="your-matrix-token",
        room="!abcdefg:matrix.org")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gitlab/sdk/v9/go/gitlab"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		awesomeProject, err := gitlab.NewProject(ctx, "awesome_project", &gitlab.ProjectArgs{
    			Name:            pulumi.String("awesome_project"),
    			Description:     pulumi.String("My awesome project."),
    			VisibilityLevel: pulumi.String("public"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = gitlab.NewProjectIntegrationMatrix(ctx, "matrix", &gitlab.ProjectIntegrationMatrixArgs{
    			Project:  awesomeProject.ID(),
    			Hostname: pulumi.String("https://matrix.org"),
    			Token:    pulumi.String("your-matrix-token"),
    			Room:     pulumi.String("!abcdefg:matrix.org"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using GitLab = Pulumi.GitLab;
    
    return await Deployment.RunAsync(() => 
    {
        var awesomeProject = new GitLab.Index.Project("awesome_project", new()
        {
            Name = "awesome_project",
            Description = "My awesome project.",
            VisibilityLevel = "public",
        });
    
        var matrix = new GitLab.Index.ProjectIntegrationMatrix("matrix", new()
        {
            Project = awesomeProject.Id,
            Hostname = "https://matrix.org",
            Token = "your-matrix-token",
            Room = "!abcdefg:matrix.org",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gitlab.Project;
    import com.pulumi.gitlab.ProjectArgs;
    import com.pulumi.gitlab.ProjectIntegrationMatrix;
    import com.pulumi.gitlab.ProjectIntegrationMatrixArgs;
    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 awesomeProject = new Project("awesomeProject", ProjectArgs.builder()
                .name("awesome_project")
                .description("My awesome project.")
                .visibilityLevel("public")
                .build());
    
            var matrix = new ProjectIntegrationMatrix("matrix", ProjectIntegrationMatrixArgs.builder()
                .project(awesomeProject.id())
                .hostname("https://matrix.org")
                .token("your-matrix-token")
                .room("!abcdefg:matrix.org")
                .build());
    
        }
    }
    
    resources:
      awesomeProject:
        type: gitlab:Project
        name: awesome_project
        properties:
          name: awesome_project
          description: My awesome project.
          visibilityLevel: public
      matrix:
        type: gitlab:ProjectIntegrationMatrix
        properties:
          project: ${awesomeProject.id}
          hostname: https://matrix.org
          token: your-matrix-token
          room: '!abcdefg:matrix.org'
    

    Create ProjectIntegrationMatrix Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProjectIntegrationMatrix(name: string, args: ProjectIntegrationMatrixArgs, opts?: CustomResourceOptions);
    @overload
    def ProjectIntegrationMatrix(resource_name: str,
                                 args: ProjectIntegrationMatrixArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProjectIntegrationMatrix(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 project: Optional[str] = None,
                                 token: Optional[str] = None,
                                 room: Optional[str] = None,
                                 pipeline_events: Optional[bool] = None,
                                 issues_events: Optional[bool] = None,
                                 merge_requests_events: Optional[bool] = None,
                                 note_events: Optional[bool] = None,
                                 notify_only_broken_pipelines: Optional[bool] = None,
                                 branches_to_be_notified: Optional[str] = None,
                                 hostname: Optional[str] = None,
                                 push_events: Optional[bool] = None,
                                 confidential_note_events: Optional[bool] = None,
                                 tag_push_events: Optional[bool] = None,
                                 confidential_issues_events: Optional[bool] = None,
                                 use_inherited_settings: Optional[bool] = None,
                                 wiki_page_events: Optional[bool] = None)
    func NewProjectIntegrationMatrix(ctx *Context, name string, args ProjectIntegrationMatrixArgs, opts ...ResourceOption) (*ProjectIntegrationMatrix, error)
    public ProjectIntegrationMatrix(string name, ProjectIntegrationMatrixArgs args, CustomResourceOptions? opts = null)
    public ProjectIntegrationMatrix(String name, ProjectIntegrationMatrixArgs args)
    public ProjectIntegrationMatrix(String name, ProjectIntegrationMatrixArgs args, CustomResourceOptions options)
    
    type: gitlab:ProjectIntegrationMatrix
    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 ProjectIntegrationMatrixArgs
    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 ProjectIntegrationMatrixArgs
    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 ProjectIntegrationMatrixArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectIntegrationMatrixArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectIntegrationMatrixArgs
    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 projectIntegrationMatrixResource = new GitLab.ProjectIntegrationMatrix("projectIntegrationMatrixResource", new()
    {
        Project = "string",
        Token = "string",
        Room = "string",
        PipelineEvents = false,
        IssuesEvents = false,
        MergeRequestsEvents = false,
        NoteEvents = false,
        NotifyOnlyBrokenPipelines = false,
        BranchesToBeNotified = "string",
        Hostname = "string",
        PushEvents = false,
        ConfidentialNoteEvents = false,
        TagPushEvents = false,
        ConfidentialIssuesEvents = false,
        UseInheritedSettings = false,
        WikiPageEvents = false,
    });
    
    example, err := gitlab.NewProjectIntegrationMatrix(ctx, "projectIntegrationMatrixResource", &gitlab.ProjectIntegrationMatrixArgs{
    	Project:                   pulumi.String("string"),
    	Token:                     pulumi.String("string"),
    	Room:                      pulumi.String("string"),
    	PipelineEvents:            pulumi.Bool(false),
    	IssuesEvents:              pulumi.Bool(false),
    	MergeRequestsEvents:       pulumi.Bool(false),
    	NoteEvents:                pulumi.Bool(false),
    	NotifyOnlyBrokenPipelines: pulumi.Bool(false),
    	BranchesToBeNotified:      pulumi.String("string"),
    	Hostname:                  pulumi.String("string"),
    	PushEvents:                pulumi.Bool(false),
    	ConfidentialNoteEvents:    pulumi.Bool(false),
    	TagPushEvents:             pulumi.Bool(false),
    	ConfidentialIssuesEvents:  pulumi.Bool(false),
    	UseInheritedSettings:      pulumi.Bool(false),
    	WikiPageEvents:            pulumi.Bool(false),
    })
    
    var projectIntegrationMatrixResource = new ProjectIntegrationMatrix("projectIntegrationMatrixResource", ProjectIntegrationMatrixArgs.builder()
        .project("string")
        .token("string")
        .room("string")
        .pipelineEvents(false)
        .issuesEvents(false)
        .mergeRequestsEvents(false)
        .noteEvents(false)
        .notifyOnlyBrokenPipelines(false)
        .branchesToBeNotified("string")
        .hostname("string")
        .pushEvents(false)
        .confidentialNoteEvents(false)
        .tagPushEvents(false)
        .confidentialIssuesEvents(false)
        .useInheritedSettings(false)
        .wikiPageEvents(false)
        .build());
    
    project_integration_matrix_resource = gitlab.ProjectIntegrationMatrix("projectIntegrationMatrixResource",
        project="string",
        token="string",
        room="string",
        pipeline_events=False,
        issues_events=False,
        merge_requests_events=False,
        note_events=False,
        notify_only_broken_pipelines=False,
        branches_to_be_notified="string",
        hostname="string",
        push_events=False,
        confidential_note_events=False,
        tag_push_events=False,
        confidential_issues_events=False,
        use_inherited_settings=False,
        wiki_page_events=False)
    
    const projectIntegrationMatrixResource = new gitlab.ProjectIntegrationMatrix("projectIntegrationMatrixResource", {
        project: "string",
        token: "string",
        room: "string",
        pipelineEvents: false,
        issuesEvents: false,
        mergeRequestsEvents: false,
        noteEvents: false,
        notifyOnlyBrokenPipelines: false,
        branchesToBeNotified: "string",
        hostname: "string",
        pushEvents: false,
        confidentialNoteEvents: false,
        tagPushEvents: false,
        confidentialIssuesEvents: false,
        useInheritedSettings: false,
        wikiPageEvents: false,
    });
    
    type: gitlab:ProjectIntegrationMatrix
    properties:
        branchesToBeNotified: string
        confidentialIssuesEvents: false
        confidentialNoteEvents: false
        hostname: string
        issuesEvents: false
        mergeRequestsEvents: false
        noteEvents: false
        notifyOnlyBrokenPipelines: false
        pipelineEvents: false
        project: string
        pushEvents: false
        room: string
        tagPushEvents: false
        token: string
        useInheritedSettings: false
        wikiPageEvents: false
    

    ProjectIntegrationMatrix 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 ProjectIntegrationMatrix resource accepts the following input properties:

    Project string
    The ID or full path of the project to integrate with Matrix.
    Room string
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    Token string
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    BranchesToBeNotified string
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issue events.
    ConfidentialNoteEvents bool
    Enable notifications for confidential note events.
    Hostname string
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    IssuesEvents bool
    Enable notifications for issue events.
    MergeRequestsEvents bool
    Enable notifications for merge request events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines.
    PipelineEvents bool
    Enable notifications for pipeline events.
    PushEvents bool
    Enable notifications for push events.
    TagPushEvents bool
    Enable notifications for tag push events.
    UseInheritedSettings bool
    Indicates whether to inherit the default settings. Defaults to false.
    WikiPageEvents bool
    Enable notifications for wiki page events.
    Project string
    The ID or full path of the project to integrate with Matrix.
    Room string
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    Token string
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    BranchesToBeNotified string
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issue events.
    ConfidentialNoteEvents bool
    Enable notifications for confidential note events.
    Hostname string
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    IssuesEvents bool
    Enable notifications for issue events.
    MergeRequestsEvents bool
    Enable notifications for merge request events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines.
    PipelineEvents bool
    Enable notifications for pipeline events.
    PushEvents bool
    Enable notifications for push events.
    TagPushEvents bool
    Enable notifications for tag push events.
    UseInheritedSettings bool
    Indicates whether to inherit the default settings. Defaults to false.
    WikiPageEvents bool
    Enable notifications for wiki page events.
    project String
    The ID or full path of the project to integrate with Matrix.
    room String
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    token String
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    branchesToBeNotified String
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issue events.
    confidentialNoteEvents Boolean
    Enable notifications for confidential note events.
    hostname String
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issuesEvents Boolean
    Enable notifications for issue events.
    mergeRequestsEvents Boolean
    Enable notifications for merge request events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    pushEvents Boolean
    Enable notifications for push events.
    tagPushEvents Boolean
    Enable notifications for tag push events.
    useInheritedSettings Boolean
    Indicates whether to inherit the default settings. Defaults to false.
    wikiPageEvents Boolean
    Enable notifications for wiki page events.
    project string
    The ID or full path of the project to integrate with Matrix.
    room string
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    token string
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    branchesToBeNotified string
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidentialIssuesEvents boolean
    Enable notifications for confidential issue events.
    confidentialNoteEvents boolean
    Enable notifications for confidential note events.
    hostname string
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issuesEvents boolean
    Enable notifications for issue events.
    mergeRequestsEvents boolean
    Enable notifications for merge request events.
    noteEvents boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines boolean
    Send notifications for broken pipelines.
    pipelineEvents boolean
    Enable notifications for pipeline events.
    pushEvents boolean
    Enable notifications for push events.
    tagPushEvents boolean
    Enable notifications for tag push events.
    useInheritedSettings boolean
    Indicates whether to inherit the default settings. Defaults to false.
    wikiPageEvents boolean
    Enable notifications for wiki page events.
    project str
    The ID or full path of the project to integrate with Matrix.
    room str
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    token str
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    branches_to_be_notified str
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidential_issues_events bool
    Enable notifications for confidential issue events.
    confidential_note_events bool
    Enable notifications for confidential note events.
    hostname str
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issues_events bool
    Enable notifications for issue events.
    merge_requests_events bool
    Enable notifications for merge request events.
    note_events bool
    Enable notifications for note events.
    notify_only_broken_pipelines bool
    Send notifications for broken pipelines.
    pipeline_events bool
    Enable notifications for pipeline events.
    push_events bool
    Enable notifications for push events.
    tag_push_events bool
    Enable notifications for tag push events.
    use_inherited_settings bool
    Indicates whether to inherit the default settings. Defaults to false.
    wiki_page_events bool
    Enable notifications for wiki page events.
    project String
    The ID or full path of the project to integrate with Matrix.
    room String
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    token String
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    branchesToBeNotified String
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issue events.
    confidentialNoteEvents Boolean
    Enable notifications for confidential note events.
    hostname String
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issuesEvents Boolean
    Enable notifications for issue events.
    mergeRequestsEvents Boolean
    Enable notifications for merge request events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    pushEvents Boolean
    Enable notifications for push events.
    tagPushEvents Boolean
    Enable notifications for tag push events.
    useInheritedSettings Boolean
    Indicates whether to inherit the default settings. Defaults to false.
    wikiPageEvents Boolean
    Enable notifications for wiki page events.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProjectIntegrationMatrix 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 ProjectIntegrationMatrix Resource

    Get an existing ProjectIntegrationMatrix 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?: ProjectIntegrationMatrixState, opts?: CustomResourceOptions): ProjectIntegrationMatrix
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            branches_to_be_notified: Optional[str] = None,
            confidential_issues_events: Optional[bool] = None,
            confidential_note_events: Optional[bool] = None,
            hostname: Optional[str] = None,
            issues_events: Optional[bool] = None,
            merge_requests_events: Optional[bool] = None,
            note_events: Optional[bool] = None,
            notify_only_broken_pipelines: Optional[bool] = None,
            pipeline_events: Optional[bool] = None,
            project: Optional[str] = None,
            push_events: Optional[bool] = None,
            room: Optional[str] = None,
            tag_push_events: Optional[bool] = None,
            token: Optional[str] = None,
            use_inherited_settings: Optional[bool] = None,
            wiki_page_events: Optional[bool] = None) -> ProjectIntegrationMatrix
    func GetProjectIntegrationMatrix(ctx *Context, name string, id IDInput, state *ProjectIntegrationMatrixState, opts ...ResourceOption) (*ProjectIntegrationMatrix, error)
    public static ProjectIntegrationMatrix Get(string name, Input<string> id, ProjectIntegrationMatrixState? state, CustomResourceOptions? opts = null)
    public static ProjectIntegrationMatrix get(String name, Output<String> id, ProjectIntegrationMatrixState state, CustomResourceOptions options)
    resources:  _:    type: gitlab:ProjectIntegrationMatrix    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.
    The following state arguments are supported:
    BranchesToBeNotified string
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issue events.
    ConfidentialNoteEvents bool
    Enable notifications for confidential note events.
    Hostname string
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    IssuesEvents bool
    Enable notifications for issue events.
    MergeRequestsEvents bool
    Enable notifications for merge request events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines.
    PipelineEvents bool
    Enable notifications for pipeline events.
    Project string
    The ID or full path of the project to integrate with Matrix.
    PushEvents bool
    Enable notifications for push events.
    Room string
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    TagPushEvents bool
    Enable notifications for tag push events.
    Token string
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    UseInheritedSettings bool
    Indicates whether to inherit the default settings. Defaults to false.
    WikiPageEvents bool
    Enable notifications for wiki page events.
    BranchesToBeNotified string
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issue events.
    ConfidentialNoteEvents bool
    Enable notifications for confidential note events.
    Hostname string
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    IssuesEvents bool
    Enable notifications for issue events.
    MergeRequestsEvents bool
    Enable notifications for merge request events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines.
    PipelineEvents bool
    Enable notifications for pipeline events.
    Project string
    The ID or full path of the project to integrate with Matrix.
    PushEvents bool
    Enable notifications for push events.
    Room string
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    TagPushEvents bool
    Enable notifications for tag push events.
    Token string
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    UseInheritedSettings bool
    Indicates whether to inherit the default settings. Defaults to false.
    WikiPageEvents bool
    Enable notifications for wiki page events.
    branchesToBeNotified String
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issue events.
    confidentialNoteEvents Boolean
    Enable notifications for confidential note events.
    hostname String
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issuesEvents Boolean
    Enable notifications for issue events.
    mergeRequestsEvents Boolean
    Enable notifications for merge request events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    project String
    The ID or full path of the project to integrate with Matrix.
    pushEvents Boolean
    Enable notifications for push events.
    room String
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    tagPushEvents Boolean
    Enable notifications for tag push events.
    token String
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    useInheritedSettings Boolean
    Indicates whether to inherit the default settings. Defaults to false.
    wikiPageEvents Boolean
    Enable notifications for wiki page events.
    branchesToBeNotified string
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidentialIssuesEvents boolean
    Enable notifications for confidential issue events.
    confidentialNoteEvents boolean
    Enable notifications for confidential note events.
    hostname string
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issuesEvents boolean
    Enable notifications for issue events.
    mergeRequestsEvents boolean
    Enable notifications for merge request events.
    noteEvents boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines boolean
    Send notifications for broken pipelines.
    pipelineEvents boolean
    Enable notifications for pipeline events.
    project string
    The ID or full path of the project to integrate with Matrix.
    pushEvents boolean
    Enable notifications for push events.
    room string
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    tagPushEvents boolean
    Enable notifications for tag push events.
    token string
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    useInheritedSettings boolean
    Indicates whether to inherit the default settings. Defaults to false.
    wikiPageEvents boolean
    Enable notifications for wiki page events.
    branches_to_be_notified str
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidential_issues_events bool
    Enable notifications for confidential issue events.
    confidential_note_events bool
    Enable notifications for confidential note events.
    hostname str
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issues_events bool
    Enable notifications for issue events.
    merge_requests_events bool
    Enable notifications for merge request events.
    note_events bool
    Enable notifications for note events.
    notify_only_broken_pipelines bool
    Send notifications for broken pipelines.
    pipeline_events bool
    Enable notifications for pipeline events.
    project str
    The ID or full path of the project to integrate with Matrix.
    push_events bool
    Enable notifications for push events.
    room str
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    tag_push_events bool
    Enable notifications for tag push events.
    token str
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    use_inherited_settings bool
    Indicates whether to inherit the default settings. Defaults to false.
    wiki_page_events bool
    Enable notifications for wiki page events.
    branchesToBeNotified String
    Branches to send notifications for. Valid options are: all, default, protected, defaultAndProtected. The default value is "default"
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issue events.
    confidentialNoteEvents Boolean
    Enable notifications for confidential note events.
    hostname String
    Custom hostname of the Matrix server. The default value is "https://matrix.org".
    issuesEvents Boolean
    Enable notifications for issue events.
    mergeRequestsEvents Boolean
    Enable notifications for merge request events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    project String
    The ID or full path of the project to integrate with Matrix.
    pushEvents Boolean
    Enable notifications for push events.
    room String
    Unique identifier for the target room (in the format !qPKKM111FFKKsfoCVy:matrix.org).
    tagPushEvents Boolean
    Enable notifications for tag push events.
    token String
    The Matrix access token (for example, syt-zyx57W2v1u123ew11).
    useInheritedSettings Boolean
    Indicates whether to inherit the default settings. Defaults to false.
    wikiPageEvents Boolean
    Enable notifications for wiki page events.

    Import

    Starting in Terraform v1.5.0, you can use an import block to import gitlab.ProjectIntegrationMatrix. For example:

    Importing using the CLI is supported with the following syntax:

    You can import a gitlab.ProjectIntegrationMatrix state using the project ID, for example:

    $ pulumi import gitlab:index/projectIntegrationMatrix:ProjectIntegrationMatrix matrix 1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    GitLab pulumi/pulumi-gitlab
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the gitlab Terraform Provider.
    gitlab logo
    Viewing docs for GitLab v9.11.0
    published on Tuesday, Apr 21, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.