sst / ion

SST v3
https://sst.dev
MIT License
1.88k stars 221 forks source link

Feature Request: Use block storage with sst.aws.Service #1150

Open shreyassanthu77 opened 1 day ago

shreyassanthu77 commented 1 day ago

It'd be very nice if we could use block storage with the sst aws ecs service. This would be very helpful to host dbs and stuff. The api would probably look something like

// other config
const efs = new sst.aws.Storage("Block", { ... });
// ...
cluster.addService({
    // other service config
    mountPoints: [
        { path: "/data", volume: efs }
    ]
});

this should also probably have options for transitEncryption and stuff