From 8eb40d062843f6a701a243136126582f1a55f3d9 Mon Sep 17 00:00:00 2001 From: Tanawa Tsamo Marius Date: Sun, 25 Sep 2022 14:52:54 +0200 Subject: [PATCH] pulumi: add page (#8410) --- pages/common/pulumi.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/pulumi.md diff --git a/pages/common/pulumi.md b/pages/common/pulumi.md new file mode 100644 index 0000000000..260c50326a --- /dev/null +++ b/pages/common/pulumi.md @@ -0,0 +1,28 @@ +# pulumi + +> Define infrastructure on any cloud using familiar programming languages. +> More information: . + +- Create a new project using a template: + +`pulumi new` + +- Create a new stack using an isolated deployment target: + +`pulumi stack init` + +- Configure variables (e.g. keys, regions, etc.) interactively: + +`pulumi config` + +- Preview and deploy changes to a program and/or infrastructure: + +`pulumi up` + +- Preview deployment changes without performing them (dry-run): + +`pulumi preview` + +- Destroy a program and its infrastructure: + +`pulumi destroy`