average-wire-57068
08/12/2018, 9:07 PMconst bucket = new aws.s3.Bucket("my-bucket", {
acl: "public-read"
});
the result was a bucket named: my-bucket-e48aec4
The following 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?