Skip to main content

Example Stack README in Pulumi Cloud

A minimal Pulumi YAML program demonstrating stack readme feature

This example lives in the pulumi/examples repository. Check out just this directory to use it:

Get started with this example
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examples
git -C pulumi-examples sparse-checkout set stack-readme-yaml
cd pulumi-examples/stack-readme-yaml

This example shows how to set up a Stack Readme in YAML.

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#

./index.ts

name: stack-readme-yaml
runtime: yaml
description: A minimal Pulumi YAML program demonstrating stack readme feature
variables:
readme:
Fn::ReadFile: ./Pulumi.README.md
outputs:
strVar: foo
arrVar:
- fizz
- buzz
readme: ${readme}

./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.

Related

The infrastructure as code platform for any cloud.