Overview
dbt --version and project tree
The preinstalled dbt CLI reporting the pinned dbt Core 1.11.11 release with the DuckDB adapter, beside the bundled sample project tree on the cloudimg data-transformation workstation image.
dbt --version and project tree
dbt build models and tests passing
dbt docs generate and warehouse query
This is a repackaged open source software product wherein additional charges apply for cloudimg support services.
Overview
dbt Core is the open source data transformation framework that lets analytics engineers build, test, and document data models in plain SQL, applying software engineering best practices to the transform step of your ELT pipeline. This AMI delivers dbt Core fully installed with the DuckDB adapter and a working sample project, so you can SSH in and run a complete transform-test-document workflow immediately - no external data warehouse, no credentials, no setup.
Why This AMI Instead of Self-Install
Installing dbt Core manually means resolving Python dependencies, configuring virtual environments, setting up adapters, writing profiles, and troubleshooting version conflicts - a process that can take hours. This image eliminates that friction entirely. The virtual environment, DuckDB adapter, system-path wrapper, sample project, and profile are preconfigured and tested as a unit. Your first dbt build completes on first login rather than after a lengthy setup cycle.
Self-Contained Out of the Box
The DuckDB adapter ships preconfigured to materialise models into a local DuckDB database file on a dedicated, independently resizable data disk. The entire toolchain works with no Snowflake, BigQuery, or Redshift account. Run dbt seed, dbt run, dbt test, dbt build, and dbt docs generate the moment you log in and watch real tables and views appear in the local warehouse. The dedicated data disk means your transformed data persists independently of the compute instance and can be resized without reprovisioning.
Working Sample Project
A complete sample project ships read-only on the image: raw CSV seeds for customers, orders, and payments flow through staging views into a customers and orders mart, with schema and data tests on the models. Copy it, study the structure, and use it as the template for your own project, or replace it entirely.
Build, Test, Document
dbt compiles your SQL models into a DAG, runs them in dependency order, materialises them as views or tables, asserts your tests, and generates a browsable documentation site with lineage graphs. Version your models in git, run them in CI, and ship trustworthy, tested data.
Security and Hardening
- SSH key-only authentication enabled; password login disabled
- Root SSH login disabled by default
- Minimal attack surface with only required packages installed
- Data disk supports EBS encryption at rest via AWS-managed or customer-managed KMS keys
- No data leaves the instance unless you configure an external warehouse connection
- OS-level firewall configured to restrict inbound traffic to SSH
Requirements and Limitations
- Minimum instance type: t3.micro (for evaluation); t3.small or larger recommended for production workloads
- Operating system: Linux-based AMI
- Data disk: Dedicated EBS volume (resizable); default size suitable for sample project and moderate workloads
- Included adapter: DuckDB only; additional adapters (Snowflake, BigQuery, Redshift, Postgres) can be installed into the virtual environment
- Scope: Support covers dbt Core usage, project structure, adapter configuration, and CI integration; custom macro development is outside standard support scope
- Updates: Image is periodically updated; in-place OS patching is the customer's responsibility between image updates
Use Cases
- A reproducible analytics engineering workstation with a pinned, ready-to-run dbt toolchain
- A CI runner image for dbt build and test pipelines
- A local development and prototyping environment using DuckDB before promoting models to a cloud warehouse
- A training and evaluation sandbox for teams adopting dbt
cloudimg Support
Highlights
- dbt Core, the open source Apache-2.0 SQL data-transformation framework, preinstalled with the DuckDB adapter in a dedicated virtual environment and a dbt wrapper on the system path, no setup required
- Self-contained: the DuckDB adapter materialises models into a local database file on a dedicated, independently resizable data disk, so dbt seed, run, test, build and docs generate all work out of the box with no external warehouse and no credentials
- Ships a complete working sample project (seeds, staging views, a tested mart) so you can run a full transform-test-document workflow on first login, with 24/7 technical support from cloudimg
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
Free trial
- ...
Dimension | Description | Cost/hour |
|---|---|---|
t3.small Recommended | t3.small | $0.04 |
t2.micro | t2.micro instance type | $0.04 |
t3.micro | t3.micro instance type | $0.04 |
c5a.12xlarge | c5a.12xlarge instance type | $0.24 |
c5a.16xlarge | c5a.16xlarge instance type | $0.24 |
c5a.24xlarge | c5a.24xlarge instance type | $0.24 |
c5a.2xlarge | c5a.2xlarge instance type | $0.24 |
c5a.4xlarge | c5a.4xlarge instance type | $0.24 |
c5a.8xlarge | c5a.8xlarge instance type | $0.24 |
c5a.large | c5a.large instance type | $0.08 |
Vendor refund policy
Refunds available on request.
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
64-bit (x86) Amazon Machine Image (AMI)
Amazon Machine Image (AMI)
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Initial release of dbt Core 1.11.11 with the dbt-duckdb 1.10.1 adapter, as a ready-to-use, self-contained data-transformation CLI workstation with a working sample project.
Additional details
Usage instructions
Connect via SSH on port 22 as the default login user for your operating system variant (the user guide lists it per variant). This is a headless command-line data-transformation tool: there is no web interface. Read the welcome notes with: sudo cat /root/dbt-core-info.txt. Run dbt --version to confirm the toolchain and the DuckDB adapter. A complete working sample project ships at /opt/dbt/jaffle_shop and materialises into a local DuckDB warehouse (no external warehouse needed): cd /opt/dbt/jaffle_shop and run dbt deps, dbt seed, dbt run, dbt test and dbt build to exercise the full workflow, then dbt docs generate to build the documentation. The DuckDB warehouse file lives on a dedicated data disk at /var/lib/dbt/warehouse.duckdb. DBT_PROFILES_DIR is exported to the sample project for every login shell. To use your own data platform, install the matching adapter into the environment at /opt/dbt/venv (sudo /opt/dbt/venv/bin/pip install dbt-snowflake) and add a profile pointing at your warehouse.
Resources
Vendor resources
Support
Vendor support
cloudimg provides 24/7 technical support for this product by email and live chat.
Scope of Support
Our engineers assist with:
- Deployment and initial configuration
- dbt project structure and model materializations
- Tests, snapshots, packages, and macros
- Incremental models and documentation generation
- Connecting dbt to external warehouses (Snowflake, BigQuery, Redshift, Postgres)
- CI/CD integration and pipeline troubleshooting
- Performance tuning and adapter configuration
- OS-level troubleshooting and updates
Getting Started
After launching your instance:
- Launch the AMI on a t3.small or larger EC2 instance (t3.micro supported for evaluation)
- SSH in using your EC2 key pair (key-only auth; password login is disabled)
- Run dbt build from the project directory to validate the sample project end to end
- Review output tables in the local DuckDB database on the dedicated data disk
- Install additional adapters and configure a new profile to connect to your own warehouse
Contact
Email: support@cloudimg.co.uk Live chat: Available 24/7
For refund requests or billing inquiries, contact us via the same channels and we will respond within one business day.
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.
Similar products
