Example Stack README in Pulumi Cloud
A minimal Stack Readme Python program
This example lives in the pulumi/examples repository. Check out just this directory to use it:
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examplesgit -C pulumi-examples sparse-checkout set stack-readme-pycd pulumi-examples/stack-readme-pyThis example shows how to set up a Stack Readme in Python.
Stack READMEs in Pulumi Cloud dynamically update based on Stack Outputs. Stack READMEs interpolate output variables on the stack (${outputs.instances[0].ARN}) so that each stack can construct links to dashboards, shell commands, and other pieces of documentation. All of this content stays up to date as you stand up new stacks, rename resources, and refactor your infrastructure.
To set a Stack README, simply set Stack Output named readme to the value of your templated Stack README file. In this example, we’ve called the file Pulumi.README.md
Example Project Structure#
./__main__.py
import pulumi
pulumi.export('strVar', 'foo')pulumi.export('arrVar', ['fizz', 'buzz'])
# open template readme and read contents into stack outputwith open('./Pulumi.README.md') as f: pulumi.export('readme', f.read())./Pulumi.README.md
# Stack README
Full markdown support! Substitute stack outputs dynamically so that links can depend on your infrastructure! Link to dashboards, logs, metrics, and more.
1. Reference a string stack output: ${outputs.strVar}2. Reference an array stack output: ${outputs.arrVar[1]}How to View the Rendered Stack README#
Run pulumi up, then go to the Pulumi console by running pulumi console. Then click the README tab.