Google CloudLookerAnalytics

google_looker_instance cost estimation

A managed Looker BI platform instance. Priced per instance-hour by platform edition, billed continuously while the instance runs.

A google_looker_instance provisions a managed Looker business-intelligence platform on Google Cloud. Unlike usage-metered analytics services, Looker is priced as an always-on instance: a per-hour rate set by the platform edition, billed continuously for as long as the instance exists.

The edition determines the rate. Standard runs around $1.60/hour (roughly $1,168/month), Enterprise around $2.40/hour, and Embed around $4.00/hour, reflecting increasing user counts, query concurrency, and embedding rights. There's no scale-to-zero; a Looker instance is a standing platform, so the monthly floor is real and substantial.

c3x reads platform_edition and prices the instance-hour at 730 hours/month. User seats and query volume are governed by the edition's included limits rather than separately metered, so the edition choice is effectively the whole cost decision. This is a resource where seeing the ~$1,168+/month floor before apply matters, because it's easy to provision for evaluation and forget.

Terraform example

A minimal but realistic configuration that C3X can estimate.

resource "google_looker_instance" "bi" {
  name              = "company-bi"
  platform_edition  = "LOOKER_CORE_STANDARD"
  region            = "us-central1"

  oauth_config {
    client_id     = var.looker_oauth_client_id
    client_secret = var.looker_oauth_client_secret
  }
}

Pricing dimensions

What you actually pay for when you provision google_looker_instance.

DimensionUnitWhat's being charged
Instance hoursper hourPer-hour rate by platform edition, billed continuously. c3x reads platform_edition and assumes 730 hours/month.
$1.60/hour Standard (~$1,168/month)
Edition tierStandard / Enterprise / EmbedHigher editions raise the hourly rate (~$2.40 Enterprise, ~$4.00 Embed) for more users, concurrency, and embedding rights.

Sample C3X output

Example output from c3x estimate (Standard edition):

google_looker_instance.bi
└─ Instance (Standard)        730  hours    $1,168.00

OVERALL TOTAL                              $1,168.00

Optimization tips

Common ways to reduce google_looker_instance cost without changing the workload.

Match the edition to real user needs

Up to 60% vs Embed

Enterprise and Embed cost 1.5-2.5x Standard for capabilities (more users, embedding) many teams don't use. Start on Standard and move up only when you hit a real limit.

Don't leave evaluation instances running

Full instance cost

Looker bills continuously with no scale-to-zero. An instance spun up to evaluate and left on quietly costs over $1,100/month. Tear down trials when done.

Consolidate to one instance where governance allows

Per avoided instance

Each instance is a full standing cost. A single well-governed instance with folders and permissions usually serves multiple teams more cheaply than separate instances per team.

FAQ

How does c3x estimate Looker cost?

It reads platform_edition and prices the instance-hour at 730 hours/month. Looker is an always-on platform, so the estimate is the continuous monthly instance cost for the chosen edition.

Why does Looker cost over $1,000/month even when idle?

Looker is priced as a running platform instance, not by usage. The hourly rate applies continuously with no scale-to-zero, so the edition's monthly floor is incurred regardless of query volume.

Are users and queries billed separately?

No. User seats and query concurrency are governed by the edition's included limits rather than metered line items. The edition you pick is effectively the entire cost decision.

What's the difference between the editions?

Standard (~$1.60/hr) suits most internal BI; Enterprise (~$2.40/hr) raises user and concurrency limits; Embed (~$4.00/hr) adds rights to embed Looker in external-facing products.

Is this the same as the standalone Looker (original) product?

This resource is Looker (Google Cloud core), provisioned and billed through GCP. The legacy standalone Looker had separate commercial licensing. c3x prices the GCP-core instance model.

Related resources

Estimate this resource in your own Terraform

Free, open source, no API key. C3X parses your Terraform and shows line-item cost for every resource, including google_looker_instance.