Skip to content

Add Azure storage blob containers #5167

Closed
@andwi

Description

@andwi

Is there an existing issue for this?

  • I have searched the existing issues

Is your feature request related to a problem? Please describe the problem.

I want to declare the Azure storage blob containers that I need in the AppHost project and then I want azd to create them for me when I deploy.

Describe the solution you'd like

With Azure Service Bus it is possible to add queues and topics like this.

var sb = builder.AddAzureServiceBus("sb");
sb.AddQueue("myqueue");

I would like something similar for blob containers (and storage queues and tables for completeness).

var storage = builder.AddAzureStorage("storage");
var blobs = storage.AddBlobs("BlobConnection");
blobs.AddBlobContainer("mycontainer");

Additional context

No response

Activity

ghost added
needs-area-labelAn area label is needed to ensure this gets routed to the appropriate area owners
on Aug 4, 2024
added
area-integrationsIssues pertaining to Aspire Integrations packages
and removed
needs-area-labelAn area label is needed to ensure this gets routed to the appropriate area owners
on Aug 4, 2024
changed the title [-]Azure storage blob containers[/-] [+]Add Azure storage blob containers[/+] on Aug 8, 2024
added
area-app-modelIssues pertaining to the APIs in Aspire.Hosting, e.g. DistributedApplication
azureIssues associated specifically with scenarios tied to using Azure
and removed
area-integrationsIssues pertaining to Aspire Integrations packages
on Aug 14, 2024
davidfowl

davidfowl commented on Aug 14, 2024

@davidfowl
Member
added
area-integrationsIssues pertaining to Aspire Integrations packages
azure-storageIssues related to azure storage integration
and removed
area-app-modelIssues pertaining to the APIs in Aspire.Hosting, e.g. DistributedApplication
on Sep 7, 2024
eerhardt

eerhardt commented on Jan 14, 2025

@eerhardt
Member

Following things like #7005 #6605, this seems like something we should enable.

cc @sebastienros

33 remaining items

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

area-integrationsIssues pertaining to Aspire Integrations packagesazureIssues associated specifically with scenarios tied to using Azureazure-storageIssues related to azure storage integration

Projects

No projects

Participants

@davidfowl@sebastienros@andwi@martincostello@RussKie

Issue actions

    Add Azure storage blob containers · Issue #5167 · dotnet/aspire