User Profile
sshoaib
Copper Contributor
Joined 6 years ago
User Widgets
Recent Discussions
Re: Issues with creatin event grid subscription for Keyvault notifications using bicep
ok I think I have fixed this When invoking a log app say via Event Grid ( endpointType: 'WebHook'), we need to specify endpointUrl. However in bicep using list call back url results in error. When looking at an existing event subscription the exact Logic app url is not reflected. I ended up adding the trigger webhook to the endpointUrl and it worked. This is not documented anywhere. Hope this helps someone761Views0likes0CommentsIssues with creatin event grid subscription for Keyvault notifications using bicep
Invalid event subscription request: Supplied URL is invalid. It cannot be null or empty and should be a proper HTTPS URL like https://www.example.com."}]}} Getting the above when trying to create a deployment for this below code: resource systemTopics_keyvault_resource 'Microsoft.EventGrid/systemTopics@2023-06-01-preview' = { name: systemTopics_keyvault location: location properties: { source: keyvault_externalid topicType: 'microsoft.keyvault.vaults' } } resource event_Subscription_keyvault 'Microsoft.EventGrid/systemTopics/eventSubscriptions@2023-06-01-preview' = { parent: systemTopics_keyvault_resource name: event_subscription_name properties: { destination: { properties: { maxEventsPerBatch: 1 preferredBatchSizeInKilobytes: 64 } endpointType: 'WebHook' } filter: { includedEventTypes: [ 'Microsoft.KeyVault.CertificateExpired' 'Microsoft.KeyVault.CertificateNearExpiry' 'Microsoft.KeyVault.CertificateNewVersionCreated' 'Microsoft.KeyVault.KeyExpired' 'Microsoft.KeyVault.KeyNearExpiry' 'Microsoft.KeyVault.KeyNewVersionCreated' 'Microsoft.KeyVault.SecretExpired' 'Microsoft.KeyVault.SecretNearExpiry' 'Microsoft.KeyVault.SecretNewVersionCreated' ] } eventDeliverySchema: 'EventGridSchema' retryPolicy: { maxDeliveryAttempts: 30 eventTimeToLiveInMinutes: 1440 } } } End Goal is to have a logic app trigger the event of keyvaults to send email/via pagerduty ThanksSolved769Views0likes1CommentParsing JSON files
Hi All I am trying to add new key value layer to existing JSON files (SQL logs that will be sent to cloud). So the current JSON output is like: [ { "Column1": ".....", "session_server_principal_name": "", "server_principal_name": "....", "database_principal_name": "", "target_database_principal_name": "", "target_server_principal_name": "", "server_instance_name": "S.....", "statement": "....." }, I would like to add a parent key values like this: { "split_events": true, "events" [ { "Column1": ".....", "session_server_principal_name": "", "server_principal_name": "....", "database_principal_name": "", "target_database_principal_name": "", "target_server_principal_name": "", server_instance_name": "S.....", "statement": "....." }, },1.2KViews0likes1CommentMicrosoft 365 Developer Program
I am trying to setup M365 Developer E5 subscription, am I am getting this: This service is temporarily unavailable due to a high volume of requests. Please try again later. We apologize for the inconvenience. MS-CorrelationId: d01967c9-c808-4157-8585-7a7ab461005c Any help would be much appreciated, TIA2.6KViews0likes2Comments
Recent Blog Articles
No content to show