Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.17 KB

File metadata and controls

47 lines (30 loc) · 1.17 KB

Pulumi Dagster+ Provider

The Dagster+ resource provider for Pulumi lets you manage Dagster+ (Dagster Cloud) resources — deployments, code locations, teams, users, tokens, alert policies, and more.

This provider is built on top of the Dagster+ Terraform provider using the Pulumi Terraform Bridge.

Installing

This package is available in the following languages and packaging formats.

Python

To use from Python, install using pip:

pip install pulumi_dagsterplus

Pulumi YAML

No installation required. Reference the provider directly in your Pulumi.yaml:

plugins:
  providers:
    - name: dagsterplus

Configuration

The provider requires your Dagster+ organization name and an API token.

pulumi config set dagsterplus:organization "your-org"
pulumi config set --secret dagsterplus:apiToken "your-token"

Or via environment variables:

export DAGSTER_CLOUD_ORGANIZATION="your-org"
export DAGSTER_CLOUD_API_TOKEN="your-token"

Contributing

See CONTRIBUTING.md.