diff --git a/stack-readme-yaml/Pulumi.README.md b/stack-readme-yaml/Pulumi.README.md new file mode 100644 index 000000000..a0b649b2f --- /dev/null +++ b/stack-readme-yaml/Pulumi.README.md @@ -0,0 +1,6 @@ +# 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]} diff --git a/stack-readme-yaml/Pulumi.yaml b/stack-readme-yaml/Pulumi.yaml new file mode 100644 index 000000000..d91d27663 --- /dev/null +++ b/stack-readme-yaml/Pulumi.yaml @@ -0,0 +1,13 @@ +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} + diff --git a/stack-readme-yaml/README.md b/stack-readme-yaml/README.md new file mode 100644 index 000000000..2b35ad07f --- /dev/null +++ b/stack-readme-yaml/README.md @@ -0,0 +1,40 @@ +# Example Stack README In the Pulumi Service + +This example shows how to set up a [Stack Readme](https://www.pulumi.com/docs/intro/pulumi-service/projects-and-stacks/#stack-readme) in YAML. + +Stack READMEs in the [Pulumi Service](https://app.pulumi.com/) 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` +```yaml +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` +```markdown +# 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 console by running `pulumi console`. Then click the readme tab \ No newline at end of file