Untitled
unknown
json
a year ago
975 B
7
Indexable
{ "type": "Microsoft.Web/serverfarms", "apiVersion": "2020-12-01", "name": "MyAppServicePlan", // Replace with your desired name "location": "East US", // Replace with your desired Azure region "tags": { "environment": "production", "department": "IT" }, "sku": { "name": "F1", // Replace with the desired SKU name (e.g., F1, D1, S1, etc.) "capacity": 1, // Replace with the desired capacity (number of instances) "family": "F", // Replace with the SKU family (e.g., F, D, S) "locations": ["East US"], // Replace with the desired locations "size": "F1", // Replace with the desired size (e.g., F1, D1, S1, etc.) "tier": "Free" // Replace with the desired tier (e.g., Free, Basic, Standard, Premium, PremiumV2, etc.) }, "kind": "app", "properties": { "isSpot": false, // Set to true if you want to use Spot instances "reserved": false // Set to true if you want to use reserved capacity } }
Editor is loading...
Leave a Comment