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 Type |
Terraform Resource |
Terraform Data |
Team |
✅ |
|
Group |
✅ |
✅ |
SubGroup |
✅ |
✅ |
Blueprint |
|
✅ |
Project |
✅ |
|
Mapping to Project Types
Zeet Project Type |
Blueprint Slug |
Service Container |
zeet-kubernetes-container-app |
Job Container |
zeet-kubernetes-container-job |
Serverless |
Not Supported at the moment |
Terraform Module |
helm-chart |
Helm Release |
terraform-module |
Kubernetes Manifest |
kubernetes-manifest |
Database |
refers to database blueprint id |
Custom Blueprint |
refers 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
- Clone the repository.
- Enter the repository directory.
- 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