1. Packages
  2. GitHub
  3. API Docs
  4. RepositoryWebhook
GitHub v6.1.0 published on Monday, Mar 11, 2024 by Pulumi

github.RepositoryWebhook

Explore with Pulumi AI

github logo
GitHub v6.1.0 published on Monday, Mar 11, 2024 by Pulumi

    This resource allows you to create and manage webhooks for repositories within your GitHub organization or personal account.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as github from "@pulumi/github";
    
    const repo = new github.Repository("repo", {
        description: "Terraform acceptance tests",
        homepageUrl: "http://example.com/",
        visibility: "public",
    });
    const foo = new github.RepositoryWebhook("foo", {
        repository: repo.name,
        configuration: {
            url: "https://google.de/",
            contentType: "form",
            insecureSsl: false,
        },
        active: false,
        events: ["issues"],
    });
    
    import pulumi
    import pulumi_github as github
    
    repo = github.Repository("repo",
        description="Terraform acceptance tests",
        homepage_url="http://example.com/",
        visibility="public")
    foo = github.RepositoryWebhook("foo",
        repository=repo.name,
        configuration=github.RepositoryWebhookConfigurationArgs(
            url="https://google.de/",
            content_type="form",
            insecure_ssl=False,
        ),
        active=False,
        events=["issues"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-github/sdk/v6/go/github"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		repo, err := github.NewRepository(ctx, "repo", &github.RepositoryArgs{
    			Description: pulumi.String("Terraform acceptance tests"),
    			HomepageUrl: pulumi.String("http://example.com/"),
    			Visibility:  pulumi.String("public"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = github.NewRepositoryWebhook(ctx, "foo", &github.RepositoryWebhookArgs{
    			Repository: repo.Name,
    			Configuration: &github.RepositoryWebhookConfigurationArgs{
    				Url:         pulumi.String("https://google.de/"),
    				ContentType: pulumi.String("form"),
    				InsecureSsl: pulumi.Bool(false),
    			},
    			Active: pulumi.Bool(false),
    			Events: pulumi.StringArray{
    				pulumi.String("issues"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Github = Pulumi.Github;
    
    return await Deployment.RunAsync(() => 
    {
        var repo = new Github.Repository("repo", new()
        {
            Description = "Terraform acceptance tests",
            HomepageUrl = "http://example.com/",
            Visibility = "public",
        });
    
        var foo = new Github.RepositoryWebhook("foo", new()
        {
            Repository = repo.Name,
            Configuration = new Github.Inputs.RepositoryWebhookConfigurationArgs
            {
                Url = "https://google.de/",
                ContentType = "form",
                InsecureSsl = false,
            },
            Active = false,
            Events = new[]
            {
                "issues",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.github.Repository;
    import com.pulumi.github.RepositoryArgs;
    import com.pulumi.github.RepositoryWebhook;
    import com.pulumi.github.RepositoryWebhookArgs;
    import com.pulumi.github.inputs.RepositoryWebhookConfigurationArgs;
    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 repo = new Repository("repo", RepositoryArgs.builder()        
                .description("Terraform acceptance tests")
                .homepageUrl("http://example.com/")
                .visibility("public")
                .build());
    
            var foo = new RepositoryWebhook("foo", RepositoryWebhookArgs.builder()        
                .repository(repo.name())
                .configuration(RepositoryWebhookConfigurationArgs.builder()
                    .url("https://google.de/")
                    .contentType("form")
                    .insecureSsl(false)
                    .build())
                .active(false)
                .events("issues")
                .build());
    
        }
    }
    
    resources:
      repo:
        type: github:Repository
        properties:
          description: Terraform acceptance tests
          homepageUrl: http://example.com/
          visibility: public
      foo:
        type: github:RepositoryWebhook
        properties:
          repository: ${repo.name}
          configuration:
            url: https://google.de/
            contentType: form
            insecureSsl: false
          active: false
          events:
            - issues
    

    Create RepositoryWebhook Resource

    new RepositoryWebhook(name: string, args: RepositoryWebhookArgs, opts?: CustomResourceOptions);
    @overload
    def RepositoryWebhook(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          active: Optional[bool] = None,
                          configuration: Optional[RepositoryWebhookConfigurationArgs] = None,
                          events: Optional[Sequence[str]] = None,
                          repository: Optional[str] = None)
    @overload
    def RepositoryWebhook(resource_name: str,
                          args: RepositoryWebhookArgs,
                          opts: Optional[ResourceOptions] = None)
    func NewRepositoryWebhook(ctx *Context, name string, args RepositoryWebhookArgs, opts ...ResourceOption) (*RepositoryWebhook, error)
    public RepositoryWebhook(string name, RepositoryWebhookArgs args, CustomResourceOptions? opts = null)
    public RepositoryWebhook(String name, RepositoryWebhookArgs args)
    public RepositoryWebhook(String name, RepositoryWebhookArgs args, CustomResourceOptions options)
    
    type: github:RepositoryWebhook
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args RepositoryWebhookArgs
    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 RepositoryWebhookArgs
    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 RepositoryWebhookArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RepositoryWebhookArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RepositoryWebhookArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    RepositoryWebhook Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The RepositoryWebhook resource accepts the following input properties:

    Events List<string>
    A list of events which should trigger the webhook. See a list of available events.
    Repository string
    The repository of the webhook.
    Active bool
    Indicate if the webhook should receive events. Defaults to true.
    Configuration RepositoryWebhookConfiguration
    Configuration block for the webhook. Detailed below.
    Events []string
    A list of events which should trigger the webhook. See a list of available events.
    Repository string
    The repository of the webhook.
    Active bool
    Indicate if the webhook should receive events. Defaults to true.
    Configuration RepositoryWebhookConfigurationArgs
    Configuration block for the webhook. Detailed below.
    events List<String>
    A list of events which should trigger the webhook. See a list of available events.
    repository String
    The repository of the webhook.
    active Boolean
    Indicate if the webhook should receive events. Defaults to true.
    configuration RepositoryWebhookConfiguration
    Configuration block for the webhook. Detailed below.
    events string[]
    A list of events which should trigger the webhook. See a list of available events.
    repository string
    The repository of the webhook.
    active boolean
    Indicate if the webhook should receive events. Defaults to true.
    configuration RepositoryWebhookConfiguration
    Configuration block for the webhook. Detailed below.
    events Sequence[str]
    A list of events which should trigger the webhook. See a list of available events.
    repository str
    The repository of the webhook.
    active bool
    Indicate if the webhook should receive events. Defaults to true.
    configuration RepositoryWebhookConfigurationArgs
    Configuration block for the webhook. Detailed below.
    events List<String>
    A list of events which should trigger the webhook. See a list of available events.
    repository String
    The repository of the webhook.
    active Boolean
    Indicate if the webhook should receive events. Defaults to true.
    configuration Property Map
    Configuration block for the webhook. Detailed below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RepositoryWebhook resource produces the following output properties:

    Etag string
    Id string
    The provider-assigned unique ID for this managed resource.
    Url string
    The URL of the webhook.
    Etag string
    Id string
    The provider-assigned unique ID for this managed resource.
    Url string
    The URL of the webhook.
    etag String
    id String
    The provider-assigned unique ID for this managed resource.
    url String
    The URL of the webhook.
    etag string
    id string
    The provider-assigned unique ID for this managed resource.
    url string
    The URL of the webhook.
    etag str
    id str
    The provider-assigned unique ID for this managed resource.
    url str
    The URL of the webhook.
    etag String
    id String
    The provider-assigned unique ID for this managed resource.
    url String
    The URL of the webhook.

    Look up Existing RepositoryWebhook Resource

    Get an existing RepositoryWebhook 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?: RepositoryWebhookState, opts?: CustomResourceOptions): RepositoryWebhook
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            active: Optional[bool] = None,
            configuration: Optional[RepositoryWebhookConfigurationArgs] = None,
            etag: Optional[str] = None,
            events: Optional[Sequence[str]] = None,
            repository: Optional[str] = None,
            url: Optional[str] = None) -> RepositoryWebhook
    func GetRepositoryWebhook(ctx *Context, name string, id IDInput, state *RepositoryWebhookState, opts ...ResourceOption) (*RepositoryWebhook, error)
    public static RepositoryWebhook Get(string name, Input<string> id, RepositoryWebhookState? state, CustomResourceOptions? opts = null)
    public static RepositoryWebhook get(String name, Output<String> id, RepositoryWebhookState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Active bool
    Indicate if the webhook should receive events. Defaults to true.
    Configuration RepositoryWebhookConfiguration
    Configuration block for the webhook. Detailed below.
    Etag string
    Events List<string>
    A list of events which should trigger the webhook. See a list of available events.
    Repository string
    The repository of the webhook.
    Url string
    The URL of the webhook.
    Active bool
    Indicate if the webhook should receive events. Defaults to true.
    Configuration RepositoryWebhookConfigurationArgs
    Configuration block for the webhook. Detailed below.
    Etag string
    Events []string
    A list of events which should trigger the webhook. See a list of available events.
    Repository string
    The repository of the webhook.
    Url string
    The URL of the webhook.
    active Boolean
    Indicate if the webhook should receive events. Defaults to true.
    configuration RepositoryWebhookConfiguration
    Configuration block for the webhook. Detailed below.
    etag String
    events List<String>
    A list of events which should trigger the webhook. See a list of available events.
    repository String
    The repository of the webhook.
    url String
    The URL of the webhook.
    active boolean
    Indicate if the webhook should receive events. Defaults to true.
    configuration RepositoryWebhookConfiguration
    Configuration block for the webhook. Detailed below.
    etag string
    events string[]
    A list of events which should trigger the webhook. See a list of available events.
    repository string
    The repository of the webhook.
    url string
    The URL of the webhook.
    active bool
    Indicate if the webhook should receive events. Defaults to true.
    configuration RepositoryWebhookConfigurationArgs
    Configuration block for the webhook. Detailed below.
    etag str
    events Sequence[str]
    A list of events which should trigger the webhook. See a list of available events.
    repository str
    The repository of the webhook.
    url str
    The URL of the webhook.
    active Boolean
    Indicate if the webhook should receive events. Defaults to true.
    configuration Property Map
    Configuration block for the webhook. Detailed below.
    etag String
    events List<String>
    A list of events which should trigger the webhook. See a list of available events.
    repository String
    The repository of the webhook.
    url String
    The URL of the webhook.

    Supporting Types

    RepositoryWebhookConfiguration, RepositoryWebhookConfigurationArgs

    Url string
    The URL of the webhook.
    ContentType string
    The content type for the payload. Valid values are either form or json.
    InsecureSsl bool
    Insecure SSL boolean toggle. Defaults to false.
    Secret string
    The shared secret for the webhook. See API documentation.
    Url string
    The URL of the webhook.
    ContentType string
    The content type for the payload. Valid values are either form or json.
    InsecureSsl bool
    Insecure SSL boolean toggle. Defaults to false.
    Secret string
    The shared secret for the webhook. See API documentation.
    url String
    The URL of the webhook.
    contentType String
    The content type for the payload. Valid values are either form or json.
    insecureSsl Boolean
    Insecure SSL boolean toggle. Defaults to false.
    secret String
    The shared secret for the webhook. See API documentation.
    url string
    The URL of the webhook.
    contentType string
    The content type for the payload. Valid values are either form or json.
    insecureSsl boolean
    Insecure SSL boolean toggle. Defaults to false.
    secret string
    The shared secret for the webhook. See API documentation.
    url str
    The URL of the webhook.
    content_type str
    The content type for the payload. Valid values are either form or json.
    insecure_ssl bool
    Insecure SSL boolean toggle. Defaults to false.
    secret str
    The shared secret for the webhook. See API documentation.
    url String
    The URL of the webhook.
    contentType String
    The content type for the payload. Valid values are either form or json.
    insecureSsl Boolean
    Insecure SSL boolean toggle. Defaults to false.
    secret String
    The shared secret for the webhook. See API documentation.

    Import

    Repository webhooks can be imported using the name of the repository, combined with the id of the webhook, separated by a / character. The id of the webhook can be found in the URL of the webhook. For example: "https://github.com/foo-org/foo-repo/settings/hooks/14711452".

    Importing uses the name of the repository, as well as the ID of the webhook, e.g.

    $ pulumi import github:index/repositoryWebhook:RepositoryWebhook terraform terraform/11235813
    

    If secret is populated in the webhook’s configuration, the value will be imported as “********”.

    Package Details

    Repository
    GitHub pulumi/pulumi-github
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the github Terraform Provider.
    github logo
    GitHub v6.1.0 published on Monday, Mar 11, 2024 by Pulumi