What is StorageVault?+
StorageVault is Pilvio's S3-compatible object storage. It uses the same API as Amazon S3 — every S3-compatible tool (aws-cli, boto3, rclone, Terraform S3 backend, Veeam, etc.) works directly. Data lives in Estonian data centers.
Is StorageVault actually S3-compatible?+
Yes. StorageVault supports the standard S3 API operations: PUT, GET, DELETE, LIST, multipart upload, versioning, signed URLs. Tools like aws-cli, boto3, s3cmd, rclone and Cyberduck work unmodified — just swap the endpoint (https://s3.pilw.io).
How much does StorageVault cost?+
Storage is €0.025/GB/month (€25/TB/month). Egress is free up to 15 TB/month. API requests are free. Private-network traffic between Pilvio VMs and StorageVault is free. No minimums, no long-term contracts.
Can I use StorageVault as a Terraform state backend?+
Yes, but you need a few compatibility flags. Use the backend "s3" block with endpoint https://s3.pilw.io and set skip_credentials_validation, skip_metadata_api_check, skip_requesting_account_id, skip_s3_checksum and force_path_style to true. On Terraform >= 1.11.2 also export AWS_REQUEST_CHECKSUM_CALCULATION=when_required and AWS_RESPONSE_CHECKSUM_VALIDATION=when_required (workaround for HashiCorp issue #37432). Your infrastructure state file will live in Estonia, not on AWS servers.
Can I use StorageVault together with a Pilvio VM?+
Yes. StorageVault and Pilvio VMs live in the same data center and share a private network. Data transfer is fast (<1 ms latency) and private-network traffic is free. Backups, filesystem sync and reading media from your app are all fast and incur no traffic fees.
How does StorageVault compare to AWS S3?+
Functionally StorageVault is an AWS S3 analogue — same API, same tools. Key differences: data lives in Estonia (not Stockholm or Ireland), Pilvio is not subject to the US CLOUD Act, egress and API requests are free (AWS charges for both), and StorageVault is integrated with Pilvio VMs via a private network. AWS S3 has a broader ecosystem (Lambda, CloudFront, etc.), but StorageVault is simpler and more transparent.
How does StorageVault compare to Storadera?+
Storadera specialises in cheap bulk S3 storage (~€6/TB/mo), aimed mainly at backup and archive. StorageVault (~€25/TB/mo) is integrated with the Pilvio cloud — you get VMs, storage, API and Terraform in one place. If all you need is cheap backup storage, Storadera is cheaper. If you need S3 as part of your development workflow (Terraform state, CI/CD artifacts, app media) alongside Estonian VMs, StorageVault is the better fit.
Does StorageVault support versioning and signed URLs?+
Yes. Versioning keeps file history and protects against accidental overwrites. Signed (presigned) URLs let you share private files through a time-limited link without making the bucket public. Use boto3's generate_presigned_url() or the aws-cli presign command.