You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This guide will take you step-by-step through creating and publishing a Pulumi Package. You can use this guide to create any [type of Pulumi Package](/docs/guides/pulumi-packages#types-of-pulumi-packages): a component, custom provider, or an existing Terraform provider packaged for use within Pulumi. This guide assumes you're using GitHub to host your package's source code and GitHub Actions to publish various parts of your package.
24
+
This guide will take you through the process to create and publish a [Pulumi Package](/docs/iac/concepts/packages) to the [Pulumi Registry](/registry). You can use this guide to publish the following types of Pulumi Packages:
25
+
26
+
- A [component](/docs/iac/concepts/components) or related group of components
27
+
- A custom provider where you define the CRUD operations for each resource type
28
+
- A bridged provider, which wraps an existing Terraform provider and leverages its code to perform the CRUD operations for each resource type
29
+
30
+
{{% notes type="info" %}}
31
+
This guide is for creating packages for public consumption. If you are a looking for information on how to create and publish components for use within your organization, see [Build a Component](/docs/iac/guides/building-extending/components/build-a-component).
32
+
{{% /notes %}}
25
33
26
34
{{% notes type="info" %}}
27
-
If you are a cloud or SaaS provider interested in publishing a Pulumi provider or component, please [reach out partners team](/contact/?form=registry) to start publishing to the Pulumi Registry.
35
+
If you are a cloud or SaaS provider interested in publishing a Pulumi provider or component, please [reach out to our partners team](/contact).
28
36
{{% /notes %}}
29
37
30
38
## Prerequisites
31
39
40
+
{{% notes type="info" %}}
41
+
This guide assumes you're using GitHub to host your package's source code and GitHub Actions to publish various parts of your package.
42
+
{{% /notes %}}
43
+
32
44
- You need to [install Pulumi](/docs/install/).
33
45
- You should be familiar with the Pulumi [Resource and Component model](/docs/concepts/resources/).
34
46
- Pulumi Packages are multi-language: you can write your package once in either Go, Python, or TypeScript/JavaScript and then make it available to all Pulumi users, even if they use another language. To develop them, you need to have Git, Go, .NET, Python, and TypeScript installed on your system.
@@ -46,7 +58,7 @@ We've created some template repositories for you to use as a starting point for
46
58
- Bridge an existing Terraform Provider to use with Pulumi: [`pulumi/pulumi-tf-provider-boilerplate`](https://github.com/pulumi/pulumi-tf-provider-boilerplate)
47
59
48
60
{{% notes type="info" %}}
49
-
If you need access to a Terraform provider, but don't need the full customisation of a published provider, the ["Any Terraform Provider" Pulumi Provider](/registry/packages/terraform-provider) can provide instant access via locally generating SDKs.
61
+
If you need access to a Terraform provider, but don't need the full customization of a published provider, the ["Any Terraform Provider" Pulumi Provider](/registry/packages/terraform-provider) can provide instant access via locally generating SDKs.
0 commit comments