You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This template provides a minimal, ready-to-go Pulumi program for deploying Azure resources using the Azure Native provider in TypeScript. It establishes a basic infrastructure stack that you can use as a foundation for more complex deployments.
4
+
5
+
## When to Use This Template
6
+
7
+
- You need a quick boilerplate for Azure Native deployments with Pulumi and TypeScript
8
+
- You want to create a Resource Group and Storage Account as a starting point
9
+
- You’re exploring Pulumi’s Azure Native SDK and TypeScript support
10
+
11
+
## Prerequisites
12
+
13
+
- An active Azure subscription
14
+
- Node.js (LTS) installed
15
+
- A Pulumi account and CLI already installed and configured
16
+
- Azure credentials available (e.g., via `az login` or environment variables)
17
+
18
+
## Usage
19
+
20
+
Scaffold a new project from the Pulumi registry template:
21
+
```bash
22
+
pulumi new azure-typescript
23
+
```
24
+
25
+
Follow the prompts to:
26
+
1. Name your project and stack
27
+
2. (Optionally) override the default Azure location
28
+
29
+
Once the project is created:
30
+
```bash
31
+
cd<your-project-name>
32
+
pulumi config set azure-native:location <your-region>
0 commit comments