Python Pulumi: Difference between revisions
Line 57: | Line 57: | ||
project = pulumi.get_project() | project = pulumi.get_project() | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<Font color=darkkhaki> | |||
Getting whether we're doing a dry run or an actual deployment from the program: | |||
<syntaxhighlight lang='python'> | |||
project = pulumi.get_project() | |||
</syntaxhighlight> | |||
</Font> | |||
=AWS= | =AWS= | ||
* [[Python Pulumi AWS SSM Parameter|SSM Parameter]] | * [[Python Pulumi AWS SSM Parameter|SSM Parameter]] |
Revision as of 02:00, 12 January 2022
External
Internal
Pulumi Python SDK
The SDK is available as a pip package.
Python Pulumi and Virtual Environments
A new Python project created with pulumi new
will have a virtual environment created in a venv
directory with required dependencies from requirements.txt
installed in it. This behavior is controlled by the virtualenv
runtime
option in Pulumi.yaml:
runtime:
name: python
options:
virtualenv: venv
virtualenv
is the path, relative to the project directory, to the virtual environment to use.
Pulumi Python Packges
Adding a New Dependency
To install a new dependency in the virtual environment, add the entry to requirements.txt
and run in the project directory:
venv/bin/pip install -r requirements.txt
Project Layout
The project directory must contain either a __main__.py
file or a setup.py
file that defines the entry point.
my-project │ ├─ README.md ├─ Pulumi.yaml ├─ Pulumi.my-stack.yaml ├─ __main__.py ├─ requirements.txt └─ venv ├─ bin │ ├─ pip │ └─ python ├─ include ├─ lib └─ pyvenv.cfg
Also see:
__main__.py
__main__.py
is the Pulumi Python program that defines the stack resources.
import pulumi
from pulumi_aws import ssm
parameter = ssm.Parameter("/test/a", type="String", value="1234")
pulumi.export("parameter_name", parameter.id)
Python Pulumi Programming Model
Get the name of the currently deploying project:
project = pulumi.get_project()
Getting whether we're doing a dry run or an actual deployment from the program:
project = pulumi.get_project()