mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-08 01:45:55 +00:00
30 lines
734 B
Plaintext
30 lines
734 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pulumi stack history
|
|
|
|
> Display history for a stack.
|
|
> More information: <https://www.pulumi.com/docs/iac/cli/commands/pulumi_stack_history/>.
|
|
|
|
- Display history for the current stack:
|
|
|
|
`pulumi stack {{[hist|history]}}`
|
|
|
|
- Display history for the current stack showing full dates instead of relative dates:
|
|
|
|
`pulumi stack {{[hist|history]}} --full-dates`
|
|
|
|
- Display history for the current stack in JSON format:
|
|
|
|
`pulumi stack {{[hist|history]}} {{[-j|--json]}}`
|
|
|
|
- Display history for a specific stack:
|
|
|
|
`pulumi stack {{[hist|history]}} {{[-s|--stack]}} {{stack_name}}`
|
|
|
|
- Display help:
|
|
|
|
`pulumi stack {{[hist|history]}} {{[-h|--help]}}`
|