Skip to content

Azure storage doc content ordering #2935

@glennc

Description

@glennc

Describe the issue or suggestion

The ordering of content in the storage docs should be different. For Blob storage for example, the doc is specific to blob storage but we don't show the code sample of how to add and reference blob storage until nearly the end. You need to go through a bunch of content on Bicep and other advanced config options before you see it.

This code is what I wanted and it was almost at the end of the doc

var builder = DistributedApplication.CreateBuilder(args);

var blobs = builder.AddAzureStorage("storage")
                   .RunAsEmulator()
                   .AddBlobs("blobs");

builder.AddProject<Projects.ExampleProject>()
       .WithReference(blobs)
       .WaitFor(blobs);

// After adding all resources, run the app...

Since we use the same pattern for the other storage docs this applies to those as well.


Associated WorkItem - 419032

Metadata

Metadata

Assignees

Labels

📌 seQUESTeredIdentifies that an issue has been imported into Quest.area-docs

Type

Projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions