Using the below code; ```const bucket = new aws.s3...
# general
a
Using the below code;
Copy code
const bucket = new aws.s3.Bucket("my-bucket", {
    acl: "public-read"
});
the result was a bucket named: my-bucket-e48aec4 The following code:
Copy code
const storage = new azure.storage.Account("divgopulumi", {
    location: 'eastus',
    resourceGroupName: 'MyRG',
    accountReplicationType: "LRS",
    accountKind: "StorageV2",
    accessTier: "Cool",
    accountTier: "Standard",
    customDomain: {
        name: "<http://files.mydomain.com|files.mydomain.com>",
        useSubdomain: true
    }
})
resulted in a storageAccount named: divgopulumic91925bb My question is: how do I generate these objects without the trailing random characters?