Kite Provider Documentation

Infrastructure as code providers for managing cloud resources.

Loading providers...

Getting Started

Select a provider from the sidebar or cards above to view its resources and documentation.

Example

// Configure a provider
provider "aws" {
    region = "us-east-1"
}

// Create a resource
resource Vpc main {
    cidrBlock = "10.0.0.0/16"
    tags = { Name: "main-vpc" }
}