skip to Main Content

use azurerm_virtual_machine with trusted_launch

Due to https://github.com/hashicorp/terraform-provider-azurerm/issues/6117, I must use azurerm_virtual_machine to create my intended machine. Unfortunately, the image in use requires trusted launch, for which I could not find any configuration option. Is this possible or am I forced to use az_api instead?

VIEW QUESTION

how to Skip Api Version Check for Azure blob storage in .NET Aspire

I'm running Azure blob storage by Aspire var builder = DistributedApplication.CreateBuilder(args); var blobs = builder.AddAzureStorage("storage") .RunAsEmulator() .AddBlobs("blobs"); builder. Build().Run(); var objectStorageApi = builder.AddProject<Projects.ObjectStorage_Api>("ObjectStorageApi") .WithReference(blobs); the problem is when my client creates a blob container or something to the blob it…

VIEW QUESTION

Azure – roleDefinitions for Bing resource

I want to grant AppService access to a Bing resource (Microsoft.Bing/accounts@2020-06-10). Which role (Microsoft.Authorization/roleDefinitions) should I set in Bing's IAM (Microsoft.Authorization/roleAssignments)? In detail, I need to know the following xxx. var role = subscriptionResourceId( 'Microsoft.Authorization/roleDefinitions', 'xxx-xxx-xxx-xxx-xxx' ) resource searchServiceIndexAppPermissions 'Microsoft.Authorization/roleAssignments@2020-04-01-preview'…

VIEW QUESTION
Back To Top
Search