Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created November 5, 2019 18:34
Show Gist options
  • Save mikhailshilkov/cbdfe8d89818bd0de4e0f3aaecc9e734 to your computer and use it in GitHub Desktop.
Save mikhailshilkov/cbdfe8d89818bd0de4e0f3aaecc9e734 to your computer and use it in GitHub Desktop.
import * as azure from "@pulumi/azure";
import * as pulumi from "@pulumi/pulumi";
const resourceGroup = new azure.core.ResourceGroup("rg", { location: "westus2" });
const appServicePlan = new azure.appservice.Plan("asp", {
resourceGroupName: resourceGroup.name,
kind: "App",
sku: {
tier: "Basic",
size: "B1",
},
});
const app = new azure.appservice.AppService("app", {
resourceGroupName: resourceGroup.name,
appServicePlanId: appServicePlan.id,
appSettings: {
"abbc": "def",
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment