Skip to main content
The Latitude.sh Terraform provider allows you to manage your infrastructure as code using Terraform.

Installation

Add the provider to your Terraform configuration:
terraform {
  required_providers {
    latitudesh = {
      source  = "latitudesh/latitudesh"
      version = "~> 2.7.1"
    }
  }
}

provider "latitudesh" {
  api_key = var.latitudesh_api_key
}

Getting Started

Generate an API key from your dashboard and configure it as an environment variable or in your Terraform variables.

Examples

Check out the Terraform guide for detailed examples and use cases.