home.social

Search

1000 results for “holgerjs”

  1. Would be nice if I could just copy & paste my jsonc Azure Policy definition into the Azure Portal for quick testing... but unfortunately it accepts only pure json format, so I have to strip my comments from the file beforehand. There goes the 'quick'-part... 😒

    #Azure #AzurePolicy

  2. TIL that the azure-mgmt-core library (#AzureSDK for #Python) actually contains some useful helper functions:
    - parse_resource_id(), which returns the parts of the id
    - resource_id(), which builds a resource id based on the parameters passed into the function
    - is_valid_resource_id(), to validate a resource id
    - is_valid_resource_name(), to validate a resource name against ARM guidelines
    - get_arm_endpoints(), to return ARM endpoint and ARM credential scopes

    github.com/Azure/azure-sdk-for

    #azure

  3. Why "Policy Initiative". The original term "Policy Set" seems way more descriptive to me. And less prone to typos. 🙈
    #Azure #AzurePolicy

  4. Apparently, #pylance can now be configured to automatically create an f-string when a { is added to a string.

    Currently disabled by default; can be enabled at the "python.analysis.autoFormatStrings" setting in #VSCode once the May Update has been installed.

    #Python

    devblogs.microsoft.com/python/

  5. Neat. Cross-region service endpoints can now be configured to allow access to an Azure Blob or Data Lake storage account from VNets in any region. Apparently, local and cross-region service endpoints can't coexist on the same subnet so would need to be recreated.

    #Azure #AzureStorage #ServiceEndpoints

    azure.microsoft.com/en-gb/upda

  6. azure.github.io/AppService/202

    Azure Policy for App Service have updated built-in policies to monitor against a _specified_ language version instead of always monitor against the _latest_ version.
    #azure #azureappservice #AzurePolicy

  7. So, here is a #PowerShell #ResourceGraph query to list all storage accounts and their #allowSharedKeyAccess settings:

    Search-AzGraph -Query "resources | where type =~ 'Microsoft.Storage/storageAccounts' | extend allowSharedKeyAccess = parse_json(properties).allowSharedKeyAccess | project subscriptionId, resourceGroup, name, allowSharedKeyAccess"

    #Azure #StorageAccount #SharedKeyAccess

    Ref: learn.microsoft.com/en-gb/azur

  8. Just watched "Azure AD Cross-Tenant Access Settings Deep Dive" by John Savill. Pretty interesting stuff. The fun starts at around 20 minutes with the "Trusting inbound claims" section.
    #AzureAD #guestaccounts

    youtube.com/watch?v=Ku64fo7iZ4

  9. Just watched "Azure AD Cross-Tenant Access Settings Deep Dive" by John Savill. Pretty interesting stuff. The fun starts at around 20 minutes with the "Trusting inbound claims" section.
    #AzureAD #guestaccounts

    youtube.com/watch?v=Ku64fo7iZ4

  10. Just watched "Azure AD Cross-Tenant Access Settings Deep Dive" by John Savill. Pretty interesting stuff. The fun starts at around 20 minutes with the "Trusting inbound claims" section.

    youtube.com/watch?v=Ku64fo7iZ4Y

  11. Meh. After updating #WSL today, I started receiving RDP popups saying that the "identity of remote computer could not be verified" and asking whether I wanted to connect to it anyway. Seems to be this issue related #WSLg: github.com/microsoft/wslg/issu

    There is a workaround of disabling WSLg which works for me: github.com/microsoft/WSL/issue

  12. Meh. After updating today, I started receiving RDP popups saying that the "identity of remote computer could not be verified" and asking whether I wanted to connect to it anyway. Seems to be this issue related : github.com/microsoft/wslg/issu

    There is a workaround of disabling WSLg which works for me: github.com/microsoft/WSL/issue

  13. Huh, nice, it is possible to upload custom logs to #Azure #LogAnalytics workspaces through the #AzureSDK Client libraries.

    azure.microsoft.com/en-us/upda

    Details and examples on the Azure Monitor Ingestion client library for #Python are also available: github.com/Azure/azure-sdk-for

  14. Working with #Azure and the #AzurePolicy #RestAPI today and it feels unnecessary complicated to get a list of Policy Assignments and the associated Policy Definitions and Policy Set Definitions, which are further separated into builtin policies, custom policies and policies assigned at management group level. 🙈

    learn.microsoft.com/en-us/rest

  15. The latest beta release of the Azure Text Analytics client libraries for Python (and other SDK's) has been announced. The blog post includes Python samples for these features:
    - Abstractive summarization
    - Named entity recognition (NER) resolutions
    - Dynamic classification
    - Healthcare FHIR bundles with document type
    - Automatic language and script detection

    #Azure #Python #AzureSDK #AI #TextAnalytics

    Reference: devblogs.microsoft.com/azure-s

  16. The latest beta release of the Azure Text Analytics client libraries for Python (and other SDK's) has been announced. The blog post includes Python samples for these features:
    - Abstractive summarization
    - Named entity recognition (NER) resolutions
    - Dynamic classification
    - Healthcare FHIR bundles with document type
    - Automatic language and script detection

    Reference: devblogs.microsoft.com/azure-s

  17. Catching up with some of the #Python sessions at #FOSDEM23 by watching the recordings. Not all sessions seem to be available unfortunately. 😐

    Python devroom: fosdem.org/2023/schedule/track

    Recordings: video.fosdem.org/2023/UD2.218A

  18. The February updates for the Azure Developer CLI (azd) include new templates for Python:

    - Deploy a Python (Flask) web app with PostgreSQL in Azure
    - Deploy a Python (Django) web app with PostgreSQL in Azure
    - HTTP API powered by FastAPI with Azure Functions and APIM

    #Azure #AzureDeveloperCli #Python #Templates #azd

    devblogs.microsoft.com/azure-s

  19. Just installed the Azure Developer CLI for some testing and saw that by default usage data is collected and sent to Microsoft and opt-out is required if this is not desired 'by setting the AZURE_DEV_COLLECT_TELEMETRY environment variable to 'no' in the shell you use.'
    If you want this as a persistent config and if you are using bash, make sure to add...

    export AZURE_DEV_COLLECT_TELEMETRY="no"

    ...to your .bashrc.

    Reference: github.com/Azure/azure-dev#dat

    #Azure #AzureDeveloperCLI #Telemetry #Bash