Terraform
The official Terraform provider for Thalassa Cloud enables you to define and manage your infrastructure declaratively.
- Provider:
thalassa-cloud/thalassa
- Registry: https://registry.terraform.io/providers/thalassa-cloud/thalassa/latest
- Source: https://github.com/thalassa-cloud/terraform-provider-thalassa
Quick start
terraform {
required_providers {
thalassa = {
source = "thalassa-cloud/thalassa"
version = ">= 0.0.0"
}
}
}
provider "thalassa" {
organisation_id = var.organisation_id
token = var.token
}
variable "organisation_id" {}
variable "token" { sensitive = true }
resource "thalassa_vpc" "example" {
name = "example-vpc"
}
See the provider documentation for all resources and data sources:
- Registry docs: https://registry.terraform.io/providers/thalassa-cloud/thalassa/latest
- Source code and issues: https://github.com/thalassa-cloud/terraform-provider-thalassa