1. Packages
  2. Artifactory
  3. API Docs
  4. MavenRepository
artifactory v6.4.2 published on Thursday, Mar 28, 2024 by Pulumi

artifactory.MavenRepository

Explore with Pulumi AI

artifactory logo
artifactory v6.4.2 published on Thursday, Mar 28, 2024 by Pulumi

    Creates a virtual Maven repository. Official documentation can be found here.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as artifactory from "@pulumi/artifactory";
    
    const bar = new artifactory.LocalMavenRepository("bar", {
        key: "bar",
        repoLayoutRef: "maven-2-default",
    });
    const baz = new artifactory.RemoteMavenRepository("baz", {
        key: "baz",
        repoLayoutRef: "maven-2-default",
        url: "https://search.maven.com/",
    });
    const maven_virt_repo = new artifactory.MavenRepository("maven-virt-repo", {
        description: "A test virtual repo",
        excludesPattern: "com/google/**",
        forceMavenAuthentication: true,
        includesPattern: "com/jfrog/**,cloud/jfrog/**",
        key: "maven-virt-repo",
        notes: "Internal description",
        pomRepositoryReferencesCleanupPolicy: "discard_active_reference",
        repoLayoutRef: "maven-2-default",
        repositories: [
            bar.key,
            baz.key,
        ],
    });
    
    import pulumi
    import pulumi_artifactory as artifactory
    
    bar = artifactory.LocalMavenRepository("bar",
        key="bar",
        repo_layout_ref="maven-2-default")
    baz = artifactory.RemoteMavenRepository("baz",
        key="baz",
        repo_layout_ref="maven-2-default",
        url="https://search.maven.com/")
    maven_virt_repo = artifactory.MavenRepository("maven-virt-repo",
        description="A test virtual repo",
        excludes_pattern="com/google/**",
        force_maven_authentication=True,
        includes_pattern="com/jfrog/**,cloud/jfrog/**",
        key="maven-virt-repo",
        notes="Internal description",
        pom_repository_references_cleanup_policy="discard_active_reference",
        repo_layout_ref="maven-2-default",
        repositories=[
            bar.key,
            baz.key,
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-artifactory/sdk/v6/go/artifactory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		bar, err := artifactory.NewLocalMavenRepository(ctx, "bar", &artifactory.LocalMavenRepositoryArgs{
    			Key:           pulumi.String("bar"),
    			RepoLayoutRef: pulumi.String("maven-2-default"),
    		})
    		if err != nil {
    			return err
    		}
    		baz, err := artifactory.NewRemoteMavenRepository(ctx, "baz", &artifactory.RemoteMavenRepositoryArgs{
    			Key:           pulumi.String("baz"),
    			RepoLayoutRef: pulumi.String("maven-2-default"),
    			Url:           pulumi.String("https://search.maven.com/"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = artifactory.NewMavenRepository(ctx, "maven-virt-repo", &artifactory.MavenRepositoryArgs{
    			Description:                          pulumi.String("A test virtual repo"),
    			ExcludesPattern:                      pulumi.String("com/google/**"),
    			ForceMavenAuthentication:             pulumi.Bool(true),
    			IncludesPattern:                      pulumi.String("com/jfrog/**,cloud/jfrog/**"),
    			Key:                                  pulumi.String("maven-virt-repo"),
    			Notes:                                pulumi.String("Internal description"),
    			PomRepositoryReferencesCleanupPolicy: pulumi.String("discard_active_reference"),
    			RepoLayoutRef:                        pulumi.String("maven-2-default"),
    			Repositories: pulumi.StringArray{
    				bar.Key,
    				baz.Key,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Artifactory = Pulumi.Artifactory;
    
    return await Deployment.RunAsync(() => 
    {
        var bar = new Artifactory.LocalMavenRepository("bar", new()
        {
            Key = "bar",
            RepoLayoutRef = "maven-2-default",
        });
    
        var baz = new Artifactory.RemoteMavenRepository("baz", new()
        {
            Key = "baz",
            RepoLayoutRef = "maven-2-default",
            Url = "https://search.maven.com/",
        });
    
        var maven_virt_repo = new Artifactory.MavenRepository("maven-virt-repo", new()
        {
            Description = "A test virtual repo",
            ExcludesPattern = "com/google/**",
            ForceMavenAuthentication = true,
            IncludesPattern = "com/jfrog/**,cloud/jfrog/**",
            Key = "maven-virt-repo",
            Notes = "Internal description",
            PomRepositoryReferencesCleanupPolicy = "discard_active_reference",
            RepoLayoutRef = "maven-2-default",
            Repositories = new[]
            {
                bar.Key,
                baz.Key,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.artifactory.LocalMavenRepository;
    import com.pulumi.artifactory.LocalMavenRepositoryArgs;
    import com.pulumi.artifactory.RemoteMavenRepository;
    import com.pulumi.artifactory.RemoteMavenRepositoryArgs;
    import com.pulumi.artifactory.MavenRepository;
    import com.pulumi.artifactory.MavenRepositoryArgs;
    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 bar = new LocalMavenRepository("bar", LocalMavenRepositoryArgs.builder()        
                .key("bar")
                .repoLayoutRef("maven-2-default")
                .build());
    
            var baz = new RemoteMavenRepository("baz", RemoteMavenRepositoryArgs.builder()        
                .key("baz")
                .repoLayoutRef("maven-2-default")
                .url("https://search.maven.com/")
                .build());
    
            var maven_virt_repo = new MavenRepository("maven-virt-repo", MavenRepositoryArgs.builder()        
                .description("A test virtual repo")
                .excludesPattern("com/google/**")
                .forceMavenAuthentication(true)
                .includesPattern("com/jfrog/**,cloud/jfrog/**")
                .key("maven-virt-repo")
                .notes("Internal description")
                .pomRepositoryReferencesCleanupPolicy("discard_active_reference")
                .repoLayoutRef("maven-2-default")
                .repositories(            
                    bar.key(),
                    baz.key())
                .build());
    
        }
    }
    
    resources:
      bar:
        type: artifactory:LocalMavenRepository
        properties:
          key: bar
          repoLayoutRef: maven-2-default
      baz:
        type: artifactory:RemoteMavenRepository
        properties:
          key: baz
          repoLayoutRef: maven-2-default
          url: https://search.maven.com/
      maven-virt-repo:
        type: artifactory:MavenRepository
        properties:
          description: A test virtual repo
          excludesPattern: com/google/**
          forceMavenAuthentication: true
          includesPattern: com/jfrog/**,cloud/jfrog/**
          key: maven-virt-repo
          notes: Internal description
          pomRepositoryReferencesCleanupPolicy: discard_active_reference
          repoLayoutRef: maven-2-default
          repositories:
            - ${bar.key}
            - ${baz.key}
    

    Create MavenRepository Resource

    new MavenRepository(name: string, args: MavenRepositoryArgs, opts?: CustomResourceOptions);
    @overload
    def MavenRepository(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        artifactory_requests_can_retrieve_remote_artifacts: Optional[bool] = None,
                        default_deployment_repo: Optional[str] = None,
                        description: Optional[str] = None,
                        excludes_pattern: Optional[str] = None,
                        force_maven_authentication: Optional[bool] = None,
                        includes_pattern: Optional[str] = None,
                        key: Optional[str] = None,
                        key_pair: Optional[str] = None,
                        notes: Optional[str] = None,
                        pom_repository_references_cleanup_policy: Optional[str] = None,
                        project_environments: Optional[Sequence[str]] = None,
                        project_key: Optional[str] = None,
                        repo_layout_ref: Optional[str] = None,
                        repositories: Optional[Sequence[str]] = None)
    @overload
    def MavenRepository(resource_name: str,
                        args: MavenRepositoryArgs,
                        opts: Optional[ResourceOptions] = None)
    func NewMavenRepository(ctx *Context, name string, args MavenRepositoryArgs, opts ...ResourceOption) (*MavenRepository, error)
    public MavenRepository(string name, MavenRepositoryArgs args, CustomResourceOptions? opts = null)
    public MavenRepository(String name, MavenRepositoryArgs args)
    public MavenRepository(String name, MavenRepositoryArgs args, CustomResourceOptions options)
    
    type: artifactory:MavenRepository
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args MavenRepositoryArgs
    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 MavenRepositoryArgs
    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 MavenRepositoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MavenRepositoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MavenRepositoryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Key string
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    DefaultDeploymentRepo string
    Default repository to deploy artifacts.
    Description string
    Public description.
    ExcludesPattern string
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    ForceMavenAuthentication bool
    Forces authentication when fetching from remote repos.
    IncludesPattern string
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    KeyPair string
    The keypair used to sign artifacts
    Notes string
    Internal description.
    PomRepositoryReferencesCleanupPolicy string
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    ProjectEnvironments List<string>
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    ProjectKey string
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    RepoLayoutRef string
    Repository layout key for the virtual repository
    Repositories List<string>
    The effective list of actual repositories included in this virtual repository.
    Key string
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    DefaultDeploymentRepo string
    Default repository to deploy artifacts.
    Description string
    Public description.
    ExcludesPattern string
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    ForceMavenAuthentication bool
    Forces authentication when fetching from remote repos.
    IncludesPattern string
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    KeyPair string
    The keypair used to sign artifacts
    Notes string
    Internal description.
    PomRepositoryReferencesCleanupPolicy string
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    ProjectEnvironments []string
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    ProjectKey string
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    RepoLayoutRef string
    Repository layout key for the virtual repository
    Repositories []string
    The effective list of actual repositories included in this virtual repository.
    key String
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    defaultDeploymentRepo String
    Default repository to deploy artifacts.
    description String
    Public description.
    excludesPattern String
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    forceMavenAuthentication Boolean
    Forces authentication when fetching from remote repos.
    includesPattern String
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    keyPair String
    The keypair used to sign artifacts
    notes String
    Internal description.
    pomRepositoryReferencesCleanupPolicy String
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    projectEnvironments List<String>
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    projectKey String
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repoLayoutRef String
    Repository layout key for the virtual repository
    repositories List<String>
    The effective list of actual repositories included in this virtual repository.
    key string
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    artifactoryRequestsCanRetrieveRemoteArtifacts boolean
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    defaultDeploymentRepo string
    Default repository to deploy artifacts.
    description string
    Public description.
    excludesPattern string
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    forceMavenAuthentication boolean
    Forces authentication when fetching from remote repos.
    includesPattern string
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    keyPair string
    The keypair used to sign artifacts
    notes string
    Internal description.
    pomRepositoryReferencesCleanupPolicy string
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    projectEnvironments string[]
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    projectKey string
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repoLayoutRef string
    Repository layout key for the virtual repository
    repositories string[]
    The effective list of actual repositories included in this virtual repository.
    key str
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    artifactory_requests_can_retrieve_remote_artifacts bool
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    default_deployment_repo str
    Default repository to deploy artifacts.
    description str
    Public description.
    excludes_pattern str
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    force_maven_authentication bool
    Forces authentication when fetching from remote repos.
    includes_pattern str
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    key_pair str
    The keypair used to sign artifacts
    notes str
    Internal description.
    pom_repository_references_cleanup_policy str
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    project_environments Sequence[str]
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    project_key str
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repo_layout_ref str
    Repository layout key for the virtual repository
    repositories Sequence[str]
    The effective list of actual repositories included in this virtual repository.
    key String
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    defaultDeploymentRepo String
    Default repository to deploy artifacts.
    description String
    Public description.
    excludesPattern String
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    forceMavenAuthentication Boolean
    Forces authentication when fetching from remote repos.
    includesPattern String
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    keyPair String
    The keypair used to sign artifacts
    notes String
    Internal description.
    pomRepositoryReferencesCleanupPolicy String
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    projectEnvironments List<String>
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    projectKey String
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repoLayoutRef String
    Repository layout key for the virtual repository
    repositories List<String>
    The effective list of actual repositories included in this virtual repository.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    PackageType string
    Id string
    The provider-assigned unique ID for this managed resource.
    PackageType string
    id String
    The provider-assigned unique ID for this managed resource.
    packageType String
    id string
    The provider-assigned unique ID for this managed resource.
    packageType string
    id str
    The provider-assigned unique ID for this managed resource.
    package_type str
    id String
    The provider-assigned unique ID for this managed resource.
    packageType String

    Look up Existing MavenRepository Resource

    Get an existing MavenRepository 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?: MavenRepositoryState, opts?: CustomResourceOptions): MavenRepository
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            artifactory_requests_can_retrieve_remote_artifacts: Optional[bool] = None,
            default_deployment_repo: Optional[str] = None,
            description: Optional[str] = None,
            excludes_pattern: Optional[str] = None,
            force_maven_authentication: Optional[bool] = None,
            includes_pattern: Optional[str] = None,
            key: Optional[str] = None,
            key_pair: Optional[str] = None,
            notes: Optional[str] = None,
            package_type: Optional[str] = None,
            pom_repository_references_cleanup_policy: Optional[str] = None,
            project_environments: Optional[Sequence[str]] = None,
            project_key: Optional[str] = None,
            repo_layout_ref: Optional[str] = None,
            repositories: Optional[Sequence[str]] = None) -> MavenRepository
    func GetMavenRepository(ctx *Context, name string, id IDInput, state *MavenRepositoryState, opts ...ResourceOption) (*MavenRepository, error)
    public static MavenRepository Get(string name, Input<string> id, MavenRepositoryState? state, CustomResourceOptions? opts = null)
    public static MavenRepository get(String name, Output<String> id, MavenRepositoryState 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:
    ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    DefaultDeploymentRepo string
    Default repository to deploy artifacts.
    Description string
    Public description.
    ExcludesPattern string
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    ForceMavenAuthentication bool
    Forces authentication when fetching from remote repos.
    IncludesPattern string
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    Key string
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    KeyPair string
    The keypair used to sign artifacts
    Notes string
    Internal description.
    PackageType string
    PomRepositoryReferencesCleanupPolicy string
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    ProjectEnvironments List<string>
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    ProjectKey string
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    RepoLayoutRef string
    Repository layout key for the virtual repository
    Repositories List<string>
    The effective list of actual repositories included in this virtual repository.
    ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    DefaultDeploymentRepo string
    Default repository to deploy artifacts.
    Description string
    Public description.
    ExcludesPattern string
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    ForceMavenAuthentication bool
    Forces authentication when fetching from remote repos.
    IncludesPattern string
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    Key string
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    KeyPair string
    The keypair used to sign artifacts
    Notes string
    Internal description.
    PackageType string
    PomRepositoryReferencesCleanupPolicy string
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    ProjectEnvironments []string
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    ProjectKey string
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    RepoLayoutRef string
    Repository layout key for the virtual repository
    Repositories []string
    The effective list of actual repositories included in this virtual repository.
    artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    defaultDeploymentRepo String
    Default repository to deploy artifacts.
    description String
    Public description.
    excludesPattern String
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    forceMavenAuthentication Boolean
    Forces authentication when fetching from remote repos.
    includesPattern String
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    key String
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    keyPair String
    The keypair used to sign artifacts
    notes String
    Internal description.
    packageType String
    pomRepositoryReferencesCleanupPolicy String
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    projectEnvironments List<String>
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    projectKey String
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repoLayoutRef String
    Repository layout key for the virtual repository
    repositories List<String>
    The effective list of actual repositories included in this virtual repository.
    artifactoryRequestsCanRetrieveRemoteArtifacts boolean
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    defaultDeploymentRepo string
    Default repository to deploy artifacts.
    description string
    Public description.
    excludesPattern string
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    forceMavenAuthentication boolean
    Forces authentication when fetching from remote repos.
    includesPattern string
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    key string
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    keyPair string
    The keypair used to sign artifacts
    notes string
    Internal description.
    packageType string
    pomRepositoryReferencesCleanupPolicy string
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    projectEnvironments string[]
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    projectKey string
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repoLayoutRef string
    Repository layout key for the virtual repository
    repositories string[]
    The effective list of actual repositories included in this virtual repository.
    artifactory_requests_can_retrieve_remote_artifacts bool
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    default_deployment_repo str
    Default repository to deploy artifacts.
    description str
    Public description.
    excludes_pattern str
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    force_maven_authentication bool
    Forces authentication when fetching from remote repos.
    includes_pattern str
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    key str
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    key_pair str
    The keypair used to sign artifacts
    notes str
    Internal description.
    package_type str
    pom_repository_references_cleanup_policy str
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    project_environments Sequence[str]
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    project_key str
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repo_layout_ref str
    Repository layout key for the virtual repository
    repositories Sequence[str]
    The effective list of actual repositories included in this virtual repository.
    artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
    Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
    defaultDeploymentRepo String
    Default repository to deploy artifacts.
    description String
    Public description.
    excludesPattern String
    List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
    forceMavenAuthentication Boolean
    Forces authentication when fetching from remote repos.
    includesPattern String
    List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y//z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (/*).
    key String
    A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
    keyPair String
    The keypair used to sign artifacts
    notes String
    Internal description.
    packageType String
    pomRepositoryReferencesCleanupPolicy String
    One of: "discard_active_reference", "discard_any_reference", "nothing"
    projectEnvironments List<String>
    Project environment for assigning this repository to. Allow values: "DEV", "PROD", or one of custom environment. Before Artifactory 7.53.1, up to 2 values ("DEV" and "PROD") are allowed. From 7.53.1 onward, only one value is allowed. The attribute should only be used if the repository is already assigned to the existing project. If not, the attribute will be ignored by Artifactory, but will remain in the Terraform state, which will create state drift during the update.
    projectKey String
    Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
    repoLayoutRef String
    Repository layout key for the virtual repository
    repositories List<String>
    The effective list of actual repositories included in this virtual repository.

    Import

    Virtual repositories can be imported using their name, e.g.

    $ pulumi import artifactory:index/mavenRepository:MavenRepository maven-virt-repo maven-virt-repo
    

    Package Details

    Repository
    artifactory pulumi/pulumi-artifactory
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the artifactory Terraform Provider.
    artifactory logo
    artifactory v6.4.2 published on Thursday, Mar 28, 2024 by Pulumi