Nuon can install Nuon on your cloud. Please reach out to sales.
Architecture
Nuon Cloud manages your BYOC control plane as an install — the same way your control plane will manage installs for your own customers. Upgrades, provisioning, and lifecycle operations are all driven remotely by Nuon. Cloud SQL backs both the Nuon control-plane database and Temporal’s database; the two run as separate Cloud SQL instances and are sized independently through the inputs.GCP Project
You’ll need a GCP project. The install stack provisions a VPC and other network primitives, so make sure your account has IAM permissions to create those resources and the project has not hit quota limits for VPCs, Cloud SQL instances, or GKE clusters.Provision the Install Stack
Nuon will share aninstall.tfvars file with the values specific to your install. Apply the install stack module from the nuonco/install-stacks repo to provision the VPC, GKE cluster, Cloud SQL instances, Cloud Storage buckets, Artifact Registry, IAM service accounts, and Secret Manager that Nuon BYOC runs on.
1. Clone the install stack module
2. Configure remote state (recommended)
Create abackend.tf file to store Terraform state in GCS.
backend.tf
3. Save the install configuration
Save the install config Nuon shared with you asinstall.tfvars. The values fall into two categories.
Provided by Nuon — these come from your install record and Nuon will share them with you:
| Variable | Description |
|---|---|
nuon_install_id | Your Nuon install ID. |
nuon_org_id | Your Nuon org ID. |
nuon_app_id | The Nuon app ID for the BYOC Nuon control plane. |
runner_api_url | The Nuon Runner API URL (typically https://runner.nuon.co). |
runner_api_token | The auth token your Nuon Runner uses to poll Nuon Cloud. |
runner_id | The Nuon Runner ID assigned to this install. |
runner_init_script_url | URL to the runner bootstrap script. |
phone_home_url | The phone-home URL for the Runner heartbeat. |
| Variable | Description |
|---|---|
provision_predefined_role | Pre-defined GCP role used as the base during provision (default roles/owner). |
maintenance_predefined_role | Pre-defined GCP role used during ongoing maintenance (default roles/owner). |
deprovision_predefined_role | Pre-defined GCP role used during deprovision, automatically disabled after use (default roles/owner). |
provision_permissions | Additional IAM permissions granted to the runner during provision. |
maintenance_permissions | Additional IAM permissions granted during ongoing maintenance. |
deprovision_permissions | Additional IAM permissions granted during deprovision. |
break_glass_roles | Map of emergency-access roles for incident response. Empty by default. |
custom_roles | Map of custom IAM roles to create in your project. |
install_inputs | Optional map of install input overrides. Usually left empty here and configured later in the Nuon dashboard. |
auto_generate_secrets | Names of secrets Nuon should auto-generate during provisioning (e.g. clickhouse_cluster_pw). |
4. Apply the install stack
Inputs
Once the install stack is applied, share these values with Nuon — Nuon configures them on your install.DNS Configuration
| Input | Value |
|---|---|
Root Domain (root_domain) | The root domain from which Nuon services are served (e.g. nuon.my-domain.com). |
Install DNS Delegation Domain (nuon_dns_domain) | Domain used to provision Cloud DNS zones for installs (e.g. installs.my-domain.com). |
GitHub Configuration
| Input | Value |
|---|---|
GitHub App Name (github_app_name) | Name of your GitHub App. |
GitHub App ID (github_app_id) | App ID from the app settings page. |
GitHub App Client ID (github_app_client_id) | Client ID from the app settings page. |
OIDC Authentication
| Input | Value |
|---|---|
Auth Provider Type (nuon_auth_provider_type) | google |
Auth Client ID (nuon_auth_client_id) | Client ID from your Google OAuth credentials. |
Auth Issuer URL (nuon_auth_issuer_url) | https://accounts.google.com |
Auth Redirect URL (nuon_auth_redirect_url) | https://auth.<your-root-domain>/auth |
Allowed Domains (nuon_auth_allowed_domains) | Comma-delimited list of email domains allowed to sign in (e.g. mycompany.com). |
Allow All Users (nuon_auth_allow_all_users) | true to allow anyone matching Allowed Domains; false to require explicit user provisioning. |
Nuon Configuration
| Input | Value |
|---|---|
Environment (env) | prod (use dev only if instructed by Nuon support). |
Runner Image URL (runner_image_url) | Image URL for runners managed by this control plane. |
Runner Image Tag (runner_image_tag) | Image tag for runners. |
Email (Optional)
| Input | Value |
|---|---|
Loops API Key (loops_api_key) | Loops API key for transactional emails (welcome, invites, etc.). |
Datadog (Optional)
| Input | Value |
|---|---|
Datadog Enabled (datadog_enabled) | true to ship logs and metrics to Datadog. |
Datadog API Key (datadog_api_key) | Datadog API key. |
Datadog App Key (datadog_app_key) | Datadog application key. |
Cloud SQL Tiers (Optional)
| Input | Value |
|---|---|
| Cloud SQL Instance Tier | Tier for the Nuon control-plane database. |
| Temporal Cloud SQL Instance Tier | Tier for Temporal’s database. |
Slack Configuration (Optional)
Provide these only if you created a Slack app in the Slack App section. Leave blank to disable the Slack integration.| Input | Value |
|---|---|
Slack Client ID (slack_client_id) | Client ID from your Slack app’s Basic Information page. |
Slack OAuth Redirect URL (slack_oauth_redirect_url) | https://slack.<your-root-domain>/slack/oauth/callback |
Secrets
When provisioning the install stack, provide these secrets:| Secret | Value |
|---|---|
github_app_key | Your GitHub App PEM key (paste directly — Terraform preserves newlines). |
auth_client_secret | Client secret from your Google OAuth credentials. |
slack_client_secret | Client Secret from your Slack app (optional — required only if using Slack). |
slack_signing_secret | Signing Secret from your Slack app (optional — required only if using Slack). |
slack_state_jwt_secret | A random high-entropy string (e.g. openssl rand -hex 32); signs the OAuth state JWT during Slack installation. Optional — required only if using Slack. |
Reprovision the install
Once all inputs and secrets are configured:- Return to your install in the Nuon dashboard.
- Click Reprovision Install from the Manage menu.
- Wait for the provision workflow to complete.
Configure DNS (Optional)
To host your BYOC Nuon instance under a custom domain, configure DNS for your root domain to point to the Cloud DNS zone created in the sandbox. After the sandbox provisions, you’ll receive:- A Zone Name for your public domain.
- Nameserver records to add to your domain’s DNS.
Verify Installation
After successful provisioning, verify your installation by visiting these URLs.| Service | URL |
|---|---|
| Dashboard | https://app.<your-root-domain> |
| CTL API | https://api.<your-root-domain> |
| Runner API | https://runner.<your-root-domain> |