Cloud servers

The CANedge2 can be used with multiple cloud servers for convenience and easy scalability.



Google S3 cloud

Google Cloud Storage supports S3 via ‘Interoperability’:

See also our video of how to set up your Google Cloud bucket and how to set up CORS.

  1. Sign up for a free account (this requires your card details, but no charges are made)
  2. Under Storage/Browser select “Create bucket” and select your preferred region
  3. Go to Settings/Interoperability, Enable Interoperability and “Create a new key”
  4. To enable CORS, start Google Cloud Shell via the >_ icon in the upper right corner
  5. Enter the following command:
echo '[{"maxAgeSeconds": 3600, "method": ["GET", "OPTIONS", "HEAD", "PUT", "POST"],
"origin": ["*"], "responseHeader": ["*"]}]' > cors-config.json
  1. Next, modify below with your bucket name and run it in the shell: gsutil cors set cors-config.json gs://[YOUR_OWN_BUCKET_NAME]

You can now configure your CANedge2 and log into CANcloud using the endpoint, http://storage.googleapis.com, your bucket name and the Interoperability storage access keys.

Note

Some S3 API calls are not supported via GCS Interoperability, incl. parts of CANcloud. If you need full support for the API, consider AWS or MinIO


Other S3 clouds

You can also use other S3 cloud servers like Wasabi or DigitalOcean. The concept of setting these up is similar to e.g. AWS and hence not described in detail here. If questions, please contact us.


Azure S3 cloud gateway

Azure does not directly support S3, but you can use MinIO or Flexify as an ‘S3 gateway’ to Azure blob storage[4]. We recommend Flexify over MinIO, as MinIO has deprecated support for Azure.

Note that setting up an S3 gateway for Azure is an advanced topic and requires that you have experience with Azure virtual machine management. While the Azure integration is possible, we strongly recommend to at least start with one of the other cloud options. We are not able to offer technical support on setting up the gateway for Azure


[1]The link opens an AWS CloudFormation ‘quick-create’ stack. This is a concept that allows for deploying pre-defined resources within your AWS account. The linked template creates an S3 bucket and a new IAM user with full access to the S3 bucket (but nothing else). The template also adds the CORS policy required for you to access the S3 bucket via CANcloud. If you are not the AWS account owner, you can forward the guide to the relevant persons. If you prefer a more ‘manual’ setup, see our original step-by-step guide.
[2]Selecting a nearby region with low latency is key to ensuring fast data transfer rates. See region codes vs. names here.
[3]Deleting the stack removes the sensitive details from the Outputs tab and ensures that the created resources are controlled independently of the stack. Your resources are not deleted (i.e. your S3 bucket, IAM user and credentials).
[4]Note that Azure + MinIO/Flexify is a higher-latency solution vs. the native S3 cloud servers.