Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 934 Bytes

readme.md

File metadata and controls

32 lines (25 loc) · 934 Bytes

Overview

This is a standard hello world style Pulumi program for Azure straight from the Pulumi docs. This is a sample repo used to test Pulumi's Automation API from a git remote

To run this:

  • Setup your Azure Creds with Pulumi by following this guide
https://www.pulumi.com/registry/packages/azure/installation-configuration/
  • Clone repo and change current working directory to git repo
git clone [email protected]:katasec/pulumi-azure-helloworld.git
cd pulumi-azure-helloworld
  • Setup stack name. The format is org name/stack name/env
pulumi new azure-go -s katasec/pulumi-azure-helloworld/dev
  • Deploy Pulumi Stack
pulumi up -f
  • Destroy Pulumi Stack and remove it
pulumi destroy -f
pulumi stack rm katasec/dev -y