The Artifactory Resource Provider lets you manage Artifactory resources.
This package is available in many languages in the standard packaging formats.
To use from JavaScript or TypeScript in Node.js, install using either npm
:
$ npm install @pulumi/artifactory
or yarn
:
$ yarn add @pulumi/artifactory
To use from Python, install using pip
:
$ pip install pulumi_artifactory
To use from Go, use go get
to grab the latest version of the library
$ go get github.com/pulumi/pulumi-artifactory/sdk/v7
To use from .NET, install using dotnet add package
:
$ dotnet add package Pulumi.Artifactory
The following configuration points are available:
artifactory:url
- (Required) URL of Artifactory. This can also be sourced from theARTIFACTORY_URL
environment variable.artifactory:username
- (Optional) Username for basic auth. Requires password to be set. Conflicts withapiKey
, andaccessToken
. This can also be sourced from theARTIFACTORY_USERNAME
environment variable.artifactory:password
- (Optional) Password for basic auth. Requires username to be set. Conflicts withapiKey
, andaccessToken
. This can also be sourced from theARTIFACTORY_PASSWORD
environment variable.artifactory:apiKey
- (Optional) API key for api auth. UsesX-JFrog-Art-Api
header. Conflicts withusername
,password
, andaccessToken
. This can also be sourced from theARTIFACTORY_API_KEY
environment variable.artifactory:accessToken
- (Optional) API key for token auth. UsesAuthorization: Bearer
header. For xray functionality, this is the only auth method accepted. Conflicts withusername
andpassword
, andapiKey
. This can also be sourced from theARTIFACTORY_ACCESS_TOKEN
environment variable.
For further information, please visit the Artifactory provider docs or for detailed reference documentation, please visit the API docs.