81847fedf3
Tentative changelog: ### Features - [cli/state] Show the full set of delete commands necessary to remove resources from the source stack, if writing to it fails [#17205](https://github.com/pulumi/pulumi/pull/17205) - [cli/state] Try to revert changes to destination stack if we are unable to save the source stack in state move [#17208](https://github.com/pulumi/pulumi/pull/17208) - [engine] Send resource names and types in provider requests from the engine, in addition to the combined URN [#17177](https://github.com/pulumi/pulumi/pull/17177) - [pkg] Add support for ESC Projects - [sdkgen/go] Allow output-versioned invokes to resolve and maintain secrets [#17132](https://github.com/pulumi/pulumi/pull/17132) ### Bug Fixes - [cli] Recover from zero-byte `credentials.json` files [#17186](https://github.com/pulumi/pulumi/pull/17186) - [cli] Using PULUMI_BACKEND_URL no longer updates credentials.json [#17199](https://github.com/pulumi/pulumi/pull/17199) - [engine] Fix parameterized providers not downloading correctly when found from state [#17218](https://github.com/pulumi/pulumi/pull/17218) - [cli/about] Fix language plugins always having unknown version in about [#17216](https://github.com/pulumi/pulumi/pull/17216) - [cli/display] Fix deletes not being show in `refresh` when using json output [#16851](https://github.com/pulumi/pulumi/pull/16851) - [cli/display] Hide unnecessary rows in non-interactive mode [#17188](https://github.com/pulumi/pulumi/pull/17188) - [sdkgen/python] Correctly case Python package names in `package add` link instructions [#17178](https://github.com/pulumi/pulumi/pull/17178) |
||
---|---|---|
.. | ||
cmd | ||
dist | ||
lib | ||
scripts | ||
stubs | ||
toolchain | ||
.gitignore | ||
.pylintrc | ||
Makefile | ||
README.md | ||
mypy.ini | ||
pyrightconfig.json | ||
requirements.txt |
README.md
Pulumi Python SDK
The Pulumi Python SDK (pulumi) is the core package used when writing Pulumi programs in Python. It contains everything that you’ll need in order to interact with Pulumi resource providers and express infrastructure using Python code. Pulumi resource providers all depend on this library and express their resources in terms of the types defined in this module.
The Pulumi Python SDK requires a supported version of Python.
note: pip is required to install dependencies. If you installed Python from source, with an installer from python.org, or via Homebrew you should already have pip. If Python is installed using your OS package manager, you may have to install pip separately, see Installing pip/setuptools/wheel with Linux Package Managers. For example, on Debian/Ubuntu you must run sudo apt install python3-venv python3-pip.
Getting Started
The fastest way to get up and running is to choose from one of the following Getting Started guides: -aws -microsoft azure -google cloud -kubernetes
Pulumi Programming Model
The Pulumi programming model defines the core concepts you will use when creating infrastructure as code programs using Pulumi. Architecture & Concepts describes these concepts with examples available in Python. These concepts are made available to you in the Pulumi SDK.
The Pulumi SDK is available to Python developers as a Pip package distributed on PyPI . To learn more, refer to the Pulumi SDK Reference Guide.
The Pulumi programming model includes a core concept of Input and Output values, which are used to track how outputs of one resource flow in as inputs to another resource. This concept is important to understand when getting started with Python and Pulumi, and the [Inputs and Outputs] (https://www.pulumi.com/docs/intro/concepts/inputs-outputs/)documentation is recommended to get a feel for how to work with this core part of Pulumi in common cases.
The Pulumi Python Resource Model
Like most languages usable with Pulumi, Pulumi represents cloud resources as classes and Python programs can instantiate those classes. All classes that can be instantiated to produce actual resources derive from the pulumi.Resource class.