AWS S3

AWS S3

We can upload the files you generate through Vuuh directly to an S3 bucket of your choice.

Our setup

Contact us at  support@vuuh.com  with the following details, for us to set it up:
  • the bucket to upload to (eg. vuuh-test-bucket-0001)
  • the key you wish to upload the files to. We can template it using the date it is generated, the order number, the delivery note number (if it is a delivery note), the brand of the order, the retailer of the order. (eg. vuuhoutputs/{date_yyyymmdd}/{brand_slug}.xlsx will generate outputs at vuuhoutputs/20240828/jackandjones.xlsx ).
  • the output you want to automate the upload of
We are working to expose this configuration on the client side ( brands.vuuh.com  and  retailers.vuuh.com ) so you can can have full control over it yourself Victory Hand

Your setup

You need to grant our AWS IAM users the following permissions, otherwise, the exports will fail.
{
"Version": "2012-10-17",
"Statement": [{
"Sid": "Statement1",
"Principal": {
"AWS": [
"arn:aws:iam::145040892136:user/ClientAwsExport-940496f", // our staging user
"arn:aws:iam::145040892136:user/ClientAwsExport-a096063" // our production user
]
},
"Resource": [
"arn:aws:s3:::YOURBUCKET/*"
],
"Effect": "Allow",
"Action": ["s3:PutObject"]
}]
}