1. Packages
  2. AzureDevOps
  3. API Docs
  4. RepositoryPolicyAuthorEmailPattern
Azure DevOps v3.0.0 published on Friday, Mar 15, 2024 by Pulumi

azuredevops.RepositoryPolicyAuthorEmailPattern

Explore with Pulumi AI

azuredevops logo
Azure DevOps v3.0.0 published on Friday, Mar 15, 2024 by Pulumi

    Manage author email pattern repository policy within Azure DevOps project.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azuredevops from "@pulumi/azuredevops";
    
    const exampleProject = new azuredevops.Project("exampleProject", {
        visibility: "private",
        versionControl: "Git",
        workItemTemplate: "Agile",
        description: "Managed by Terraform",
    });
    const exampleGit = new azuredevops.Git("exampleGit", {
        projectId: exampleProject.id,
        initialization: {
            initType: "Clean",
        },
    });
    const exampleRepositoryPolicyAuthorEmailPattern = new azuredevops.RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern", {
        projectId: exampleProject.id,
        enabled: true,
        blocking: true,
        authorEmailPatterns: [
            "user1@test.com",
            "user2@test.com",
        ],
        repositoryIds: [exampleGit.id],
    });
    
    import pulumi
    import pulumi_azuredevops as azuredevops
    
    example_project = azuredevops.Project("exampleProject",
        visibility="private",
        version_control="Git",
        work_item_template="Agile",
        description="Managed by Terraform")
    example_git = azuredevops.Git("exampleGit",
        project_id=example_project.id,
        initialization=azuredevops.GitInitializationArgs(
            init_type="Clean",
        ))
    example_repository_policy_author_email_pattern = azuredevops.RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern",
        project_id=example_project.id,
        enabled=True,
        blocking=True,
        author_email_patterns=[
            "user1@test.com",
            "user2@test.com",
        ],
        repository_ids=[example_git.id])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleProject, err := azuredevops.NewProject(ctx, "exampleProject", &azuredevops.ProjectArgs{
    			Visibility:       pulumi.String("private"),
    			VersionControl:   pulumi.String("Git"),
    			WorkItemTemplate: pulumi.String("Agile"),
    			Description:      pulumi.String("Managed by Terraform"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleGit, err := azuredevops.NewGit(ctx, "exampleGit", &azuredevops.GitArgs{
    			ProjectId: exampleProject.ID(),
    			Initialization: &azuredevops.GitInitializationArgs{
    				InitType: pulumi.String("Clean"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = azuredevops.NewRepositoryPolicyAuthorEmailPattern(ctx, "exampleRepositoryPolicyAuthorEmailPattern", &azuredevops.RepositoryPolicyAuthorEmailPatternArgs{
    			ProjectId: exampleProject.ID(),
    			Enabled:   pulumi.Bool(true),
    			Blocking:  pulumi.Bool(true),
    			AuthorEmailPatterns: pulumi.StringArray{
    				pulumi.String("user1@test.com"),
    				pulumi.String("user2@test.com"),
    			},
    			RepositoryIds: pulumi.StringArray{
    				exampleGit.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureDevOps = Pulumi.AzureDevOps;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleProject = new AzureDevOps.Project("exampleProject", new()
        {
            Visibility = "private",
            VersionControl = "Git",
            WorkItemTemplate = "Agile",
            Description = "Managed by Terraform",
        });
    
        var exampleGit = new AzureDevOps.Git("exampleGit", new()
        {
            ProjectId = exampleProject.Id,
            Initialization = new AzureDevOps.Inputs.GitInitializationArgs
            {
                InitType = "Clean",
            },
        });
    
        var exampleRepositoryPolicyAuthorEmailPattern = new AzureDevOps.RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern", new()
        {
            ProjectId = exampleProject.Id,
            Enabled = true,
            Blocking = true,
            AuthorEmailPatterns = new[]
            {
                "user1@test.com",
                "user2@test.com",
            },
            RepositoryIds = new[]
            {
                exampleGit.Id,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azuredevops.Project;
    import com.pulumi.azuredevops.ProjectArgs;
    import com.pulumi.azuredevops.Git;
    import com.pulumi.azuredevops.GitArgs;
    import com.pulumi.azuredevops.inputs.GitInitializationArgs;
    import com.pulumi.azuredevops.RepositoryPolicyAuthorEmailPattern;
    import com.pulumi.azuredevops.RepositoryPolicyAuthorEmailPatternArgs;
    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 exampleProject = new Project("exampleProject", ProjectArgs.builder()        
                .visibility("private")
                .versionControl("Git")
                .workItemTemplate("Agile")
                .description("Managed by Terraform")
                .build());
    
            var exampleGit = new Git("exampleGit", GitArgs.builder()        
                .projectId(exampleProject.id())
                .initialization(GitInitializationArgs.builder()
                    .initType("Clean")
                    .build())
                .build());
    
            var exampleRepositoryPolicyAuthorEmailPattern = new RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern", RepositoryPolicyAuthorEmailPatternArgs.builder()        
                .projectId(exampleProject.id())
                .enabled(true)
                .blocking(true)
                .authorEmailPatterns(            
                    "user1@test.com",
                    "user2@test.com")
                .repositoryIds(exampleGit.id())
                .build());
    
        }
    }
    
    resources:
      exampleProject:
        type: azuredevops:Project
        properties:
          visibility: private
          versionControl: Git
          workItemTemplate: Agile
          description: Managed by Terraform
      exampleGit:
        type: azuredevops:Git
        properties:
          projectId: ${exampleProject.id}
          initialization:
            initType: Clean
      exampleRepositoryPolicyAuthorEmailPattern:
        type: azuredevops:RepositoryPolicyAuthorEmailPattern
        properties:
          projectId: ${exampleProject.id}
          enabled: true
          blocking: true
          authorEmailPatterns:
            - user1@test.com
            - user2@test.com
          repositoryIds:
            - ${exampleGit.id}
    

    Set project level repository policy

    import * as pulumi from "@pulumi/pulumi";
    import * as azuredevops from "@pulumi/azuredevops";
    
    const exampleProject = new azuredevops.Project("exampleProject", {
        visibility: "private",
        versionControl: "Git",
        workItemTemplate: "Agile",
        description: "Managed by Terraform",
    });
    const exampleRepositoryPolicyAuthorEmailPattern = new azuredevops.RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern", {
        projectId: exampleProject.id,
        enabled: true,
        blocking: true,
        authorEmailPatterns: [
            "user1@test.com",
            "user2@test.com",
        ],
    });
    
    import pulumi
    import pulumi_azuredevops as azuredevops
    
    example_project = azuredevops.Project("exampleProject",
        visibility="private",
        version_control="Git",
        work_item_template="Agile",
        description="Managed by Terraform")
    example_repository_policy_author_email_pattern = azuredevops.RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern",
        project_id=example_project.id,
        enabled=True,
        blocking=True,
        author_email_patterns=[
            "user1@test.com",
            "user2@test.com",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleProject, err := azuredevops.NewProject(ctx, "exampleProject", &azuredevops.ProjectArgs{
    			Visibility:       pulumi.String("private"),
    			VersionControl:   pulumi.String("Git"),
    			WorkItemTemplate: pulumi.String("Agile"),
    			Description:      pulumi.String("Managed by Terraform"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = azuredevops.NewRepositoryPolicyAuthorEmailPattern(ctx, "exampleRepositoryPolicyAuthorEmailPattern", &azuredevops.RepositoryPolicyAuthorEmailPatternArgs{
    			ProjectId: exampleProject.ID(),
    			Enabled:   pulumi.Bool(true),
    			Blocking:  pulumi.Bool(true),
    			AuthorEmailPatterns: pulumi.StringArray{
    				pulumi.String("user1@test.com"),
    				pulumi.String("user2@test.com"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureDevOps = Pulumi.AzureDevOps;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleProject = new AzureDevOps.Project("exampleProject", new()
        {
            Visibility = "private",
            VersionControl = "Git",
            WorkItemTemplate = "Agile",
            Description = "Managed by Terraform",
        });
    
        var exampleRepositoryPolicyAuthorEmailPattern = new AzureDevOps.RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern", new()
        {
            ProjectId = exampleProject.Id,
            Enabled = true,
            Blocking = true,
            AuthorEmailPatterns = new[]
            {
                "user1@test.com",
                "user2@test.com",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azuredevops.Project;
    import com.pulumi.azuredevops.ProjectArgs;
    import com.pulumi.azuredevops.RepositoryPolicyAuthorEmailPattern;
    import com.pulumi.azuredevops.RepositoryPolicyAuthorEmailPatternArgs;
    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 exampleProject = new Project("exampleProject", ProjectArgs.builder()        
                .visibility("private")
                .versionControl("Git")
                .workItemTemplate("Agile")
                .description("Managed by Terraform")
                .build());
    
            var exampleRepositoryPolicyAuthorEmailPattern = new RepositoryPolicyAuthorEmailPattern("exampleRepositoryPolicyAuthorEmailPattern", RepositoryPolicyAuthorEmailPatternArgs.builder()        
                .projectId(exampleProject.id())
                .enabled(true)
                .blocking(true)
                .authorEmailPatterns(            
                    "user1@test.com",
                    "user2@test.com")
                .build());
    
        }
    }
    
    resources:
      exampleProject:
        type: azuredevops:Project
        properties:
          visibility: private
          versionControl: Git
          workItemTemplate: Agile
          description: Managed by Terraform
      exampleRepositoryPolicyAuthorEmailPattern:
        type: azuredevops:RepositoryPolicyAuthorEmailPattern
        properties:
          projectId: ${exampleProject.id}
          enabled: true
          blocking: true
          authorEmailPatterns:
            - user1@test.com
            - user2@test.com
    

    Create RepositoryPolicyAuthorEmailPattern Resource

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

    Constructor syntax

    new RepositoryPolicyAuthorEmailPattern(name: string, args: RepositoryPolicyAuthorEmailPatternArgs, opts?: CustomResourceOptions);
    @overload
    def RepositoryPolicyAuthorEmailPattern(resource_name: str,
                                           args: RepositoryPolicyAuthorEmailPatternArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def RepositoryPolicyAuthorEmailPattern(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           author_email_patterns: Optional[Sequence[str]] = None,
                                           project_id: Optional[str] = None,
                                           blocking: Optional[bool] = None,
                                           enabled: Optional[bool] = None,
                                           repository_ids: Optional[Sequence[str]] = None)
    func NewRepositoryPolicyAuthorEmailPattern(ctx *Context, name string, args RepositoryPolicyAuthorEmailPatternArgs, opts ...ResourceOption) (*RepositoryPolicyAuthorEmailPattern, error)
    public RepositoryPolicyAuthorEmailPattern(string name, RepositoryPolicyAuthorEmailPatternArgs args, CustomResourceOptions? opts = null)
    public RepositoryPolicyAuthorEmailPattern(String name, RepositoryPolicyAuthorEmailPatternArgs args)
    public RepositoryPolicyAuthorEmailPattern(String name, RepositoryPolicyAuthorEmailPatternArgs args, CustomResourceOptions options)
    
    type: azuredevops:RepositoryPolicyAuthorEmailPattern
    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 RepositoryPolicyAuthorEmailPatternArgs
    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 RepositoryPolicyAuthorEmailPatternArgs
    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 RepositoryPolicyAuthorEmailPatternArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RepositoryPolicyAuthorEmailPatternArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RepositoryPolicyAuthorEmailPatternArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var repositoryPolicyAuthorEmailPatternResource = new AzureDevOps.RepositoryPolicyAuthorEmailPattern("repositoryPolicyAuthorEmailPatternResource", new()
    {
        AuthorEmailPatterns = new[]
        {
            "string",
        },
        ProjectId = "string",
        Blocking = false,
        Enabled = false,
        RepositoryIds = new[]
        {
            "string",
        },
    });
    
    example, err := azuredevops.NewRepositoryPolicyAuthorEmailPattern(ctx, "repositoryPolicyAuthorEmailPatternResource", &azuredevops.RepositoryPolicyAuthorEmailPatternArgs{
    	AuthorEmailPatterns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ProjectId: pulumi.String("string"),
    	Blocking:  pulumi.Bool(false),
    	Enabled:   pulumi.Bool(false),
    	RepositoryIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var repositoryPolicyAuthorEmailPatternResource = new RepositoryPolicyAuthorEmailPattern("repositoryPolicyAuthorEmailPatternResource", RepositoryPolicyAuthorEmailPatternArgs.builder()        
        .authorEmailPatterns("string")
        .projectId("string")
        .blocking(false)
        .enabled(false)
        .repositoryIds("string")
        .build());
    
    repository_policy_author_email_pattern_resource = azuredevops.RepositoryPolicyAuthorEmailPattern("repositoryPolicyAuthorEmailPatternResource",
        author_email_patterns=["string"],
        project_id="string",
        blocking=False,
        enabled=False,
        repository_ids=["string"])
    
    const repositoryPolicyAuthorEmailPatternResource = new azuredevops.RepositoryPolicyAuthorEmailPattern("repositoryPolicyAuthorEmailPatternResource", {
        authorEmailPatterns: ["string"],
        projectId: "string",
        blocking: false,
        enabled: false,
        repositoryIds: ["string"],
    });
    
    type: azuredevops:RepositoryPolicyAuthorEmailPattern
    properties:
        authorEmailPatterns:
            - string
        blocking: false
        enabled: false
        projectId: string
        repositoryIds:
            - string
    

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

    AuthorEmailPatterns List<string>
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    ProjectId string
    The ID of the project in which the policy will be created.
    Blocking bool
    A flag indicating if the policy should be blocking. Defaults to true.
    Enabled bool
    A flag indicating if the policy should be enabled. Defaults to true.
    RepositoryIds List<string>
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    AuthorEmailPatterns []string
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    ProjectId string
    The ID of the project in which the policy will be created.
    Blocking bool
    A flag indicating if the policy should be blocking. Defaults to true.
    Enabled bool
    A flag indicating if the policy should be enabled. Defaults to true.
    RepositoryIds []string
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    authorEmailPatterns List<String>
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    projectId String
    The ID of the project in which the policy will be created.
    blocking Boolean
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled Boolean
    A flag indicating if the policy should be enabled. Defaults to true.
    repositoryIds List<String>
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    authorEmailPatterns string[]
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    projectId string
    The ID of the project in which the policy will be created.
    blocking boolean
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled boolean
    A flag indicating if the policy should be enabled. Defaults to true.
    repositoryIds string[]
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    author_email_patterns Sequence[str]
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    project_id str
    The ID of the project in which the policy will be created.
    blocking bool
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled bool
    A flag indicating if the policy should be enabled. Defaults to true.
    repository_ids Sequence[str]
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    authorEmailPatterns List<String>
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    projectId String
    The ID of the project in which the policy will be created.
    blocking Boolean
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled Boolean
    A flag indicating if the policy should be enabled. Defaults to true.
    repositoryIds List<String>
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.

    Outputs

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

    Get an existing RepositoryPolicyAuthorEmailPattern 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?: RepositoryPolicyAuthorEmailPatternState, opts?: CustomResourceOptions): RepositoryPolicyAuthorEmailPattern
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            author_email_patterns: Optional[Sequence[str]] = None,
            blocking: Optional[bool] = None,
            enabled: Optional[bool] = None,
            project_id: Optional[str] = None,
            repository_ids: Optional[Sequence[str]] = None) -> RepositoryPolicyAuthorEmailPattern
    func GetRepositoryPolicyAuthorEmailPattern(ctx *Context, name string, id IDInput, state *RepositoryPolicyAuthorEmailPatternState, opts ...ResourceOption) (*RepositoryPolicyAuthorEmailPattern, error)
    public static RepositoryPolicyAuthorEmailPattern Get(string name, Input<string> id, RepositoryPolicyAuthorEmailPatternState? state, CustomResourceOptions? opts = null)
    public static RepositoryPolicyAuthorEmailPattern get(String name, Output<String> id, RepositoryPolicyAuthorEmailPatternState 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:
    AuthorEmailPatterns List<string>
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    Blocking bool
    A flag indicating if the policy should be blocking. Defaults to true.
    Enabled bool
    A flag indicating if the policy should be enabled. Defaults to true.
    ProjectId string
    The ID of the project in which the policy will be created.
    RepositoryIds List<string>
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    AuthorEmailPatterns []string
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    Blocking bool
    A flag indicating if the policy should be blocking. Defaults to true.
    Enabled bool
    A flag indicating if the policy should be enabled. Defaults to true.
    ProjectId string
    The ID of the project in which the policy will be created.
    RepositoryIds []string
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    authorEmailPatterns List<String>
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    blocking Boolean
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled Boolean
    A flag indicating if the policy should be enabled. Defaults to true.
    projectId String
    The ID of the project in which the policy will be created.
    repositoryIds List<String>
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    authorEmailPatterns string[]
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    blocking boolean
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled boolean
    A flag indicating if the policy should be enabled. Defaults to true.
    projectId string
    The ID of the project in which the policy will be created.
    repositoryIds string[]
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    author_email_patterns Sequence[str]
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    blocking bool
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled bool
    A flag indicating if the policy should be enabled. Defaults to true.
    project_id str
    The ID of the project in which the policy will be created.
    repository_ids Sequence[str]
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.
    authorEmailPatterns List<String>
    Block pushes with a commit author email that does not match the patterns. You can specify exact emails or use wildcards. Email patterns prefixed with "!" are excluded. Order is important.
    blocking Boolean
    A flag indicating if the policy should be blocking. Defaults to true.
    enabled Boolean
    A flag indicating if the policy should be enabled. Defaults to true.
    projectId String
    The ID of the project in which the policy will be created.
    repositoryIds List<String>
    Control whether the policy is enabled for the repository or the project. If repository_ids not configured, the policy will be set to the project.

    Import

    Azure DevOps Branch Policies can be imported using the project ID and policy configuration ID:

    $ pulumi import azuredevops:index/repositoryPolicyAuthorEmailPattern:RepositoryPolicyAuthorEmailPattern example 00000000-0000-0000-0000-000000000000/0
    

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

    Package Details

    Repository
    Azure DevOps pulumi/pulumi-azuredevops
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azuredevops Terraform Provider.
    azuredevops logo
    Azure DevOps v3.0.0 published on Friday, Mar 15, 2024 by Pulumi