navek

Intro to Pulumi - Python & AWS - Beginner Tutorial [Video]

1 min read

Check out the video!

Intro To Pulumi - Python & AWS - Beginner Tutorial

GitHub Link to Example Code

AWS CLI setup

Install AWS CLI

pip3 install awscli

Setup AWS Creds

aws configure

Installing Pulumi

install-pulumi

macOS

brew install pulumi

Lunix

curl -fsSL https://get.pulumi.com | sh

Windows

    @"%SystemRoot%System32WindowsPowerShell1.0powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((New-Object System.Net.WebClient).DownloadString('https://get.pulumi.com/install.ps1'))" && SET "PATH=%PATH%;%USERPROFILE%.pulumiin"