Terraform provider
sazabi_project
Terraform resource for a Sazabi project.
Manages a Sazabi project. Renaming updates the project in place; the organization and region are immutable and changing either forces replacement.
Example
resource "sazabi_project" "example" {
name = "checkout-service"
region = "us-west-2"
}Arguments
| Attribute | Type | Behavior | Description |
|---|---|---|---|
name | string | Required | Project name (1-100 characters). |
organization_id | string | Optional, Computed | Owning organization. Defaults to the provider's organization. Immutable. |
region | string | Optional, Computed | Project region. Immutable. Must be a supported region. |
id | string | Computed | Project ID. |
Import
terraform import sazabi_project.example prj_...