Created
November 5, 2019 18:34
-
-
Save mikhailshilkov/cbdfe8d89818bd0de4e0f3aaecc9e734 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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