artifactory logo
artifactory v3.5.3, Jun 1 23

artifactory.DebianRepository

Explore with Pulumi AI

Creates a local Debian repository and allows for the creation of a GPG key.

Example Usage

using System.Collections.Generic;
using System.IO;
using System.Linq;
using Pulumi;
using Artifactory = Pulumi.Artifactory;

return await Deployment.RunAsync(() => 
{
    var some_keypairGPG1 = new Artifactory.Keypair("some-keypairGPG1", new()
    {
        PairName = $"some-keypair{random_id.Randid.Id}",
        PairType = "GPG",
        Alias = "foo-alias1",
        PrivateKey = File.ReadAllText("samples/gpg.priv"),
        PublicKey = File.ReadAllText("samples/gpg.pub"),
    });

    var some_keypairGPG2 = new Artifactory.Keypair("some-keypairGPG2", new()
    {
        PairName = $"some-keypair4{random_id.Randid.Id}",
        PairType = "GPG",
        Alias = "foo-alias2",
        PrivateKey = File.ReadAllText("samples/gpg.priv"),
        PublicKey = File.ReadAllText("samples/gpg.pub"),
    });

    var my_debian_repo = new Artifactory.DebianRepository("my-debian-repo", new()
    {
        Key = "my-debian-repo",
        PrimaryKeypairRef = some_keypairGPG1.PairName,
        SecondaryKeypairRef = some_keypairGPG2.PairName,
        IndexCompressionFormats = new[]
        {
            "bz2",
            "lzma",
            "xz",
        },
        TrivialLayout = true,
    }, new CustomResourceOptions
    {
        DependsOn = new[]
        {
            some_keypairGPG1,
            some_keypairGPG2,
        },
    });

});
package main

import (
	"fmt"
	"os"

	"github.com/pulumi/pulumi-artifactory/sdk/v3/go/artifactory"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func readFileOrPanic(path string) pulumi.StringPtrInput {
	data, err := os.ReadFile(path)
	if err != nil {
		panic(err.Error())
	}
	return pulumi.String(string(data))
}

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := artifactory.NewKeypair(ctx, "some-keypairGPG1", &artifactory.KeypairArgs{
			PairName:   pulumi.String(fmt.Sprintf("some-keypair%v", random_id.Randid.Id)),
			PairType:   pulumi.String("GPG"),
			Alias:      pulumi.String("foo-alias1"),
			PrivateKey: readFileOrPanic("samples/gpg.priv"),
			PublicKey:  readFileOrPanic("samples/gpg.pub"),
		})
		if err != nil {
			return err
		}
		_, err = artifactory.NewKeypair(ctx, "some-keypairGPG2", &artifactory.KeypairArgs{
			PairName:   pulumi.String(fmt.Sprintf("some-keypair4%v", random_id.Randid.Id)),
			PairType:   pulumi.String("GPG"),
			Alias:      pulumi.String("foo-alias2"),
			PrivateKey: readFileOrPanic("samples/gpg.priv"),
			PublicKey:  readFileOrPanic("samples/gpg.pub"),
		})
		if err != nil {
			return err
		}
		_, err = artifactory.NewDebianRepository(ctx, "my-debian-repo", &artifactory.DebianRepositoryArgs{
			Key:                 pulumi.String("my-debian-repo"),
			PrimaryKeypairRef:   some_keypairGPG1.PairName,
			SecondaryKeypairRef: some_keypairGPG2.PairName,
			IndexCompressionFormats: pulumi.StringArray{
				pulumi.String("bz2"),
				pulumi.String("lzma"),
				pulumi.String("xz"),
			},
			TrivialLayout: pulumi.Bool(true),
		}, pulumi.DependsOn([]pulumi.Resource{
			some_keypairGPG1,
			some_keypairGPG2,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.artifactory.Keypair;
import com.pulumi.artifactory.KeypairArgs;
import com.pulumi.artifactory.DebianRepository;
import com.pulumi.artifactory.DebianRepositoryArgs;
import com.pulumi.resources.CustomResourceOptions;
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 some_keypairGPG1 = new Keypair("some-keypairGPG1", KeypairArgs.builder()        
            .pairName(String.format("some-keypair%s", random_id.randid().id()))
            .pairType("GPG")
            .alias("foo-alias1")
            .privateKey(Files.readString(Paths.get("samples/gpg.priv")))
            .publicKey(Files.readString(Paths.get("samples/gpg.pub")))
            .build());

        var some_keypairGPG2 = new Keypair("some-keypairGPG2", KeypairArgs.builder()        
            .pairName(String.format("some-keypair4%s", random_id.randid().id()))
            .pairType("GPG")
            .alias("foo-alias2")
            .privateKey(Files.readString(Paths.get("samples/gpg.priv")))
            .publicKey(Files.readString(Paths.get("samples/gpg.pub")))
            .build());

        var my_debian_repo = new DebianRepository("my-debian-repo", DebianRepositoryArgs.builder()        
            .key("my-debian-repo")
            .primaryKeypairRef(some_keypairGPG1.pairName())
            .secondaryKeypairRef(some_keypairGPG2.pairName())
            .indexCompressionFormats(            
                "bz2",
                "lzma",
                "xz")
            .trivialLayout(true)
            .build(), CustomResourceOptions.builder()
                .dependsOn(                
                    some_keypairGPG1,
                    some_keypairGPG2)
                .build());

    }
}
import pulumi
import pulumi_artifactory as artifactory

some_keypair_gpg1 = artifactory.Keypair("some-keypairGPG1",
    pair_name=f"some-keypair{random_id['randid']['id']}",
    pair_type="GPG",
    alias="foo-alias1",
    private_key=(lambda path: open(path).read())("samples/gpg.priv"),
    public_key=(lambda path: open(path).read())("samples/gpg.pub"))
some_keypair_gpg2 = artifactory.Keypair("some-keypairGPG2",
    pair_name=f"some-keypair4{random_id['randid']['id']}",
    pair_type="GPG",
    alias="foo-alias2",
    private_key=(lambda path: open(path).read())("samples/gpg.priv"),
    public_key=(lambda path: open(path).read())("samples/gpg.pub"))
my_debian_repo = artifactory.DebianRepository("my-debian-repo",
    key="my-debian-repo",
    primary_keypair_ref=some_keypair_gpg1.pair_name,
    secondary_keypair_ref=some_keypair_gpg2.pair_name,
    index_compression_formats=[
        "bz2",
        "lzma",
        "xz",
    ],
    trivial_layout=True,
    opts=pulumi.ResourceOptions(depends_on=[
            some_keypair_gpg1,
            some_keypair_gpg2,
        ]))
import * as pulumi from "@pulumi/pulumi";
import * as artifactory from "@pulumi/artifactory";
import * as fs from "fs";

const some_keypairGPG1 = new artifactory.Keypair("some-keypairGPG1", {
    pairName: `some-keypair${random_id.randid.id}`,
    pairType: "GPG",
    alias: "foo-alias1",
    privateKey: fs.readFileSync("samples/gpg.priv"),
    publicKey: fs.readFileSync("samples/gpg.pub"),
});
const some_keypairGPG2 = new artifactory.Keypair("some-keypairGPG2", {
    pairName: `some-keypair4${random_id.randid.id}`,
    pairType: "GPG",
    alias: "foo-alias2",
    privateKey: fs.readFileSync("samples/gpg.priv"),
    publicKey: fs.readFileSync("samples/gpg.pub"),
});
const my_debian_repo = new artifactory.DebianRepository("my-debian-repo", {
    key: "my-debian-repo",
    primaryKeypairRef: some_keypairGPG1.pairName,
    secondaryKeypairRef: some_keypairGPG2.pairName,
    indexCompressionFormats: [
        "bz2",
        "lzma",
        "xz",
    ],
    trivialLayout: true,
}, {
    dependsOn: [
        some_keypairGPG1,
        some_keypairGPG2,
    ],
});
resources:
  some-keypairGPG1:
    type: artifactory:Keypair
    properties:
      pairName: some-keypair${random_id.randid.id}
      pairType: GPG
      alias: foo-alias1
      privateKey:
        fn::readFile: samples/gpg.priv
      publicKey:
        fn::readFile: samples/gpg.pub
  some-keypairGPG2:
    type: artifactory:Keypair
    properties:
      pairName: some-keypair4${random_id.randid.id}
      pairType: GPG
      alias: foo-alias2
      privateKey:
        fn::readFile: samples/gpg.priv
      publicKey:
        fn::readFile: samples/gpg.pub
  my-debian-repo:
    type: artifactory:DebianRepository
    properties:
      key: my-debian-repo
      primaryKeypairRef: ${["some-keypairGPG1"].pairName}
      secondaryKeypairRef: ${["some-keypairGPG2"].pairName}
      indexCompressionFormats:
        - bz2
        - lzma
        - xz
      trivialLayout: true
    options:
      dependson:
        - ${["some-keypairGPG1"]}
        - ${["some-keypairGPG2"]}

Create DebianRepository Resource

new DebianRepository(name: string, args: DebianRepositoryArgs, opts?: CustomResourceOptions);
@overload
def DebianRepository(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     archive_browsing_enabled: Optional[bool] = None,
                     blacked_out: Optional[bool] = None,
                     cdn_redirect: Optional[bool] = None,
                     description: Optional[str] = None,
                     download_direct: Optional[bool] = None,
                     excludes_pattern: Optional[str] = None,
                     includes_pattern: Optional[str] = None,
                     index_compression_formats: Optional[Sequence[str]] = None,
                     key: Optional[str] = None,
                     notes: Optional[str] = None,
                     primary_keypair_ref: Optional[str] = None,
                     priority_resolution: Optional[bool] = None,
                     project_environments: Optional[Sequence[str]] = None,
                     project_key: Optional[str] = None,
                     property_sets: Optional[Sequence[str]] = None,
                     repo_layout_ref: Optional[str] = None,
                     secondary_keypair_ref: Optional[str] = None,
                     trivial_layout: Optional[bool] = None,
                     xray_index: Optional[bool] = None)
@overload
def DebianRepository(resource_name: str,
                     args: DebianRepositoryArgs,
                     opts: Optional[ResourceOptions] = None)
func NewDebianRepository(ctx *Context, name string, args DebianRepositoryArgs, opts ...ResourceOption) (*DebianRepository, error)
public DebianRepository(string name, DebianRepositoryArgs args, CustomResourceOptions? opts = null)
public DebianRepository(String name, DebianRepositoryArgs args)
public DebianRepository(String name, DebianRepositoryArgs args, CustomResourceOptions options)
type: artifactory:DebianRepository
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args DebianRepositoryArgs
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 DebianRepositoryArgs
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 DebianRepositoryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DebianRepositoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DebianRepositoryArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

Key string

the identity key of the repo.

ArchiveBrowsingEnabled bool

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

BlackedOut bool

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

CdnRedirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

Description string

Public description.

DownloadDirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

IncludesPattern string

List of 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 (/*).

IndexCompressionFormats List<string>

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

Notes string

Internal description.

PrimaryKeypairRef string

The primary RSA key to be used to sign packages.

PriorityResolution bool

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

PropertySets List<string>

List of property set name

RepoLayoutRef string

Repository layout key for the local repository

SecondaryKeypairRef string

The secondary RSA key to be used to sign packages.

TrivialLayout bool

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

XrayIndex bool

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

Key string

the identity key of the repo.

ArchiveBrowsingEnabled bool

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

BlackedOut bool

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

CdnRedirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

Description string

Public description.

DownloadDirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

IncludesPattern string

List of 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 (/*).

IndexCompressionFormats []string

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

Notes string

Internal description.

PrimaryKeypairRef string

The primary RSA key to be used to sign packages.

PriorityResolution bool

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

PropertySets []string

List of property set name

RepoLayoutRef string

Repository layout key for the local repository

SecondaryKeypairRef string

The secondary RSA key to be used to sign packages.

TrivialLayout bool

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

XrayIndex bool

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

key String

the identity key of the repo.

archiveBrowsingEnabled Boolean

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blackedOut Boolean

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdnRedirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description String

Public description.

downloadDirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includesPattern String

List of 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 (/*).

indexCompressionFormats List<String>

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

notes String

Internal description.

primaryKeypairRef String

The primary RSA key to be used to sign packages.

priorityResolution Boolean

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

propertySets List<String>

List of property set name

repoLayoutRef String

Repository layout key for the local repository

secondaryKeypairRef String

The secondary RSA key to be used to sign packages.

trivialLayout Boolean

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xrayIndex Boolean

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

key string

the identity key of the repo.

archiveBrowsingEnabled boolean

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blackedOut boolean

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdnRedirect boolean

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description string

Public description.

downloadDirect boolean

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includesPattern string

List of 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 (/*).

indexCompressionFormats string[]

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

notes string

Internal description.

primaryKeypairRef string

The primary RSA key to be used to sign packages.

priorityResolution boolean

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

propertySets string[]

List of property set name

repoLayoutRef string

Repository layout key for the local repository

secondaryKeypairRef string

The secondary RSA key to be used to sign packages.

trivialLayout boolean

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xrayIndex boolean

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

key str

the identity key of the repo.

archive_browsing_enabled bool

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blacked_out bool

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdn_redirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description str

Public description.

download_direct bool

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includes_pattern str

List of 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 (/*).

index_compression_formats Sequence[str]

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

notes str

Internal description.

primary_keypair_ref str

The primary RSA key to be used to sign packages.

priority_resolution bool

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

property_sets Sequence[str]

List of property set name

repo_layout_ref str

Repository layout key for the local repository

secondary_keypair_ref str

The secondary RSA key to be used to sign packages.

trivial_layout bool

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xray_index bool

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

key String

the identity key of the repo.

archiveBrowsingEnabled Boolean

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blackedOut Boolean

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdnRedirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description String

Public description.

downloadDirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includesPattern String

List of 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 (/*).

indexCompressionFormats List<String>

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

notes String

Internal description.

primaryKeypairRef String

The primary RSA key to be used to sign packages.

priorityResolution Boolean

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

propertySets List<String>

List of property set name

repoLayoutRef String

Repository layout key for the local repository

secondaryKeypairRef String

The secondary RSA key to be used to sign packages.

trivialLayout Boolean

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xrayIndex Boolean

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

Outputs

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

Get an existing DebianRepository 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?: DebianRepositoryState, opts?: CustomResourceOptions): DebianRepository
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        archive_browsing_enabled: Optional[bool] = None,
        blacked_out: Optional[bool] = None,
        cdn_redirect: Optional[bool] = None,
        description: Optional[str] = None,
        download_direct: Optional[bool] = None,
        excludes_pattern: Optional[str] = None,
        includes_pattern: Optional[str] = None,
        index_compression_formats: Optional[Sequence[str]] = None,
        key: Optional[str] = None,
        notes: Optional[str] = None,
        package_type: Optional[str] = None,
        primary_keypair_ref: Optional[str] = None,
        priority_resolution: Optional[bool] = None,
        project_environments: Optional[Sequence[str]] = None,
        project_key: Optional[str] = None,
        property_sets: Optional[Sequence[str]] = None,
        repo_layout_ref: Optional[str] = None,
        secondary_keypair_ref: Optional[str] = None,
        trivial_layout: Optional[bool] = None,
        xray_index: Optional[bool] = None) -> DebianRepository
func GetDebianRepository(ctx *Context, name string, id IDInput, state *DebianRepositoryState, opts ...ResourceOption) (*DebianRepository, error)
public static DebianRepository Get(string name, Input<string> id, DebianRepositoryState? state, CustomResourceOptions? opts = null)
public static DebianRepository get(String name, Output<String> id, DebianRepositoryState 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:
ArchiveBrowsingEnabled bool

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

BlackedOut bool

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

CdnRedirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

Description string

Public description.

DownloadDirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

IncludesPattern string

List of 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 (/*).

IndexCompressionFormats List<string>

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

Key string

the identity key of the repo.

Notes string

Internal description.

PackageType string
PrimaryKeypairRef string

The primary RSA key to be used to sign packages.

PriorityResolution bool

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

PropertySets List<string>

List of property set name

RepoLayoutRef string

Repository layout key for the local repository

SecondaryKeypairRef string

The secondary RSA key to be used to sign packages.

TrivialLayout bool

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

XrayIndex bool

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

ArchiveBrowsingEnabled bool

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

BlackedOut bool

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

CdnRedirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

Description string

Public description.

DownloadDirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

IncludesPattern string

List of 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 (/*).

IndexCompressionFormats []string

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

Key string

the identity key of the repo.

Notes string

Internal description.

PackageType string
PrimaryKeypairRef string

The primary RSA key to be used to sign packages.

PriorityResolution bool

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

PropertySets []string

List of property set name

RepoLayoutRef string

Repository layout key for the local repository

SecondaryKeypairRef string

The secondary RSA key to be used to sign packages.

TrivialLayout bool

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

XrayIndex bool

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

archiveBrowsingEnabled Boolean

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blackedOut Boolean

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdnRedirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description String

Public description.

downloadDirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includesPattern String

List of 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 (/*).

indexCompressionFormats List<String>

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

key String

the identity key of the repo.

notes String

Internal description.

packageType String
primaryKeypairRef String

The primary RSA key to be used to sign packages.

priorityResolution Boolean

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

propertySets List<String>

List of property set name

repoLayoutRef String

Repository layout key for the local repository

secondaryKeypairRef String

The secondary RSA key to be used to sign packages.

trivialLayout Boolean

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xrayIndex Boolean

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

archiveBrowsingEnabled boolean

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blackedOut boolean

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdnRedirect boolean

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description string

Public description.

downloadDirect boolean

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includesPattern string

List of 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 (/*).

indexCompressionFormats string[]

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

key string

the identity key of the repo.

notes string

Internal description.

packageType string
primaryKeypairRef string

The primary RSA key to be used to sign packages.

priorityResolution boolean

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

propertySets string[]

List of property set name

repoLayoutRef string

Repository layout key for the local repository

secondaryKeypairRef string

The secondary RSA key to be used to sign packages.

trivialLayout boolean

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xrayIndex boolean

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

archive_browsing_enabled bool

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blacked_out bool

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdn_redirect bool

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description str

Public description.

download_direct bool

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includes_pattern str

List of 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 (/*).

index_compression_formats Sequence[str]

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

key str

the identity key of the repo.

notes str

Internal description.

package_type str
primary_keypair_ref str

The primary RSA key to be used to sign packages.

priority_resolution bool

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

property_sets Sequence[str]

List of property set name

repo_layout_ref str

Repository layout key for the local repository

secondary_keypair_ref str

The secondary RSA key to be used to sign packages.

trivial_layout bool

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xray_index bool

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

archiveBrowsingEnabled Boolean

When set, you may view content such as HTML or Javadoc files directly from Artifactory. This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).

blackedOut Boolean

When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.

cdnRedirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'

description String

Public description.

downloadDirect Boolean

When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.

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.

includesPattern String

List of 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 (/*).

indexCompressionFormats List<String>

The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).

key String

the identity key of the repo.

notes String

Internal description.

packageType String
primaryKeypairRef String

The primary RSA key to be used to sign packages.

priorityResolution Boolean

Setting repositories with priority will cause metadata to be merged only from repositories set with this field

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 - 20 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.

propertySets List<String>

List of property set name

repoLayoutRef String

Repository layout key for the local repository

secondaryKeypairRef String

The secondary RSA key to be used to sign packages.

trivialLayout Boolean

When set, the repository will use the deprecated trivial layout.

Deprecated:

You shouldn't be using this

xrayIndex Boolean

Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.

Import

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

 $ pulumi import artifactory:index/debianRepository:DebianRepository my-debian-repo my-debian-repo

Package Details

Repository
artifactory pulumi/pulumi-artifactory
License
Apache-2.0
Notes

This Pulumi package is based on the artifactory Terraform Provider.