Categorygithub.com/zeet-dev/terraform-provider-zeet
modulepackage
1.0.1
Repository: https://github.com/zeet-dev/terraform-provider-zeet.git
Documentation: pkg.go.dev

# README

Terraform Provider for Zeet

Zeet simplifies the deployment and management of applications and infrastructure on your cloud. With this Terraform provider, you can automate and manage Zeet's powerful features through Terraform.

Features

  • Deploy and Manage Zeet Projects: Automate the creation and management of Zeet projects, including service containers, Helm releases, and Terraform modules.
  • Integrate with Terraform Ecosystem: Seamlessly integrate with other Terraform native cloud modules.
  • Security & Compliance: Ensure your deployments meet security and compliance standards.

Supported Resources & Data

We currently support these entities; new features are being added, so feel free to request more.

Entity TypeTerraform ResourceTerraform Data
Team
Group
SubGroup
Blueprint
Project

Mapping to Project Types

Zeet Project TypeBlueprint Slug
Service Containerzeet-kubernetes-container-app
Job Containerzeet-kubernetes-container-job
ServerlessNot Supported at the moment
Terraform Modulehelm-chart
Helm Releaseterraform-module
Kubernetes Manifestkubernetes-manifest
Databaserefers to database blueprint id
Custom Blueprintrefers to your own blueprint id

Getting Started

To get started with the Terraform Provider for Zeet, ensure you have Terraform installed and then add the Zeet provider to your Terraform configuration:

terraform {
  required_providers {
    zeet = {
      source  = "zeet-dev/zeet"
      version = "~> 1.0.0"
    }
  }
}

provider "zeet" {
  # Configuration options
}

For detailed instructions on how to use this provider, including setup, configuration, and examples, refer to the Terraform Provider Documentation.

Contributing

We welcome contributions from the community! Whether it's adding new features, improving documentation, or reporting bugs, please feel free to make a pull request or open an issue.

Development Guide

Requirements

Building The Provider

  1. Clone the repository.
  2. Enter the repository directory.
  3. Build the provider using the Go install command:
go install

Adding Dependencies

This provider uses Go modules. Please refer to the Go documentation for the most up-to-date information about using Go modules.

To add a new dependency github.com/author/dependency to your Terraform provider:

go get github.com/author/dependency
go mod tidy

Then, commit the changes to go.mod and go.sum.

Developing the Provider

To generate or update documentation, run go generate.

To run the full suite of Acceptance tests, which create real resources and often cost money, run make testacc.

make testacc

License

This Terraform provider's source code is adapted from the official template https://github.com/hashicorp/terraform-provider-scaffolding-framework