Pulumi TypeScript is like using a strongly-typed SDK instead of a REST API — compile-time guarantees replace runtime trial-and-error.
Import @pulumi/azure-native for typed Azure resources. TypeScript's type system gives you IntelliSense, auto-complete, and compile-time error checking for all Azure resource properties.
# VS Code IntelliSense:
new azure.storage.StorageAccount("storage", {
accountName: ..., ← required: string | Output<string>
resourceGroupName: ..., ← required: string | Output<string>
sku: {
name: azure.storage.SkuName.Standard_LRS ← enum autocomplete
}
})Pulumi TypeScript is like using a strongly-typed SDK instead of a REST API — compile-time guarantees replace runtime trial-and-error.
Import @pulumi/azure-native for typed Azure resources. TypeScript's type system gives you IntelliSense, auto-complete, and compile-time error checking for all Azure resource properties.
# VS Code IntelliSense:
new azure.storage.StorageAccount("storage", {
accountName: ..., ← required: string | Output<string>
resourceGroupName: ..., ← required: string | Output<string>
sku: {
name: azure.storage.SkuName.Standard_LRS ← enum autocomplete
}
})Sign in to cast your vote
Sign in to share your feedback and join the discussion.