Skip to content

Instantly share code, notes, and snippets.

@johnnyhalife
Created December 19, 2017 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnnyhalife/608994b08ebb12528d1fced9391f7a86 to your computer and use it in GitHub Desktop.
Save johnnyhalife/608994b08ebb12528d1fced9391f7a86 to your computer and use it in GitHub Desktop.
local.settings.json
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "<Storage Account for WebJobs Control Jobs>",
"AzureWebJobsDashboard": "",
// Azure Media Services Credentials
"AMSAADTenantDomain": "<Azure Active Directory Domain associated with Media Services>",
"AMSRESTAPIEndpoint": "<Azure Media Services Endpoint>",
"AMSRESTAPIClientId": "<Azure Media Services ClientID>",
"AMSRESTAPIClientSecret": "<Azure Media Services Client Secret>",
// Encode Asset Ingest Container Name
"BlobIngestContainer": "rawvideocontent",
"MediaStorageAccount": "<Azure Media Services associated Storage Account>",
// Encoder Preset Configuration
"MediaEncoderStandardTaskPreset": "Content Adaptive Multiple Bitrate MP4",
// Name for the Queue Notification Endpoint on Media Services
"QueueNotificationEndpointName": "encodeNotificationEndpoint",
// Queue Names
"EncodeJobsQueueName": "encode-jobs",
"ContentProtectionJobsQueueName": "drm-jobs",
"PublishJobsQueueName": "publish-jobs",
"UpdateCMSQueueName": "update-cms-jobs",
// Content Protection Policies
"CommonEncryptionCbcsAuthorizationPolicyName": "<FairPlay Authorization Policy>",
"DynamicCommonEncryptionCbcsDeliveryPolicyName": "<FairPlay Asset Delivery Policy>",
"CommonEncryptionAuthorizationPolicyName": "<Default Authorization Policy>",
"DynamicCommonEncryptionDeliveryPolicyName": "<Default Asset Delivery Policy>",
// JWT Settings
"JWTRestrictionPrimaryVerificationKey": "<Symmetric Key from the Content Protection policy>",
"JWTRestrictionIssuer": "<Issuer name from the restriction policy>",
"JWTRestrictionAudience": "<Audience name from the restriction policy>"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment