ambitious-crayon-56788
01/29/2020, 9:16 AM...valid values include:I tried the obvious -,Developer
,Basic
andStandard
.Premium
const apiManagementService = new azure.apimanagement.Service("apiManagementService", {
name: "my-apim-service",
resourceGroupName: resourceGroup.name,
publisherEmail: "<mailto:publisher@email.com|publisher@email.com>",
publisherName: "Publisher Corp.",
skuName: "Consumption_1"
});
...but this resulted in an error -
error: azure:apimanagement/service:Service resource 'apiManagementService' has a problem: expected sku_name to be one of [Developer Basic Standard Premium], got ConsumptionThe consumption tier has been GA for around a year now, so if it's truly not supported, is it on the road map for the near future? • Documentation: https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/azure/apimanagement/#Service-skuName
broad-dog-22463
01/29/2020, 9:28 AMadventurous-garage-59192
01/29/2020, 9:29 AMbroad-dog-22463
01/29/2020, 9:29 AMconst (
// SkuTypeBasic Basic SKU of Api Management.
SkuTypeBasic SkuType = "Basic"
// SkuTypeDeveloper Developer SKU of Api Management.
SkuTypeDeveloper SkuType = "Developer"
// SkuTypePremium Premium SKU of Api Management.
SkuTypePremium SkuType = "Premium"
// SkuTypeStandard Standard SKU of Api Management.
SkuTypeStandard SkuType = "Standard"
)
tall-librarian-49374
01/29/2020, 10:08 AMambitious-crayon-56788
01/29/2020, 10:29 AM