This is a Terraform provider for interacting with the Hetzner Robot API. It allows management of Hetzner resources through Terraform.
- Clone the repository
$ git clone https://github.com/lazureykis/terraform-provider-hetzner-robot
- Enter the repository directory
$ cd terraform-provider-hetzner-robot
- Build the provider
$ go build -o terraform-provider-hetzner-robot
terraform {
required_providers {
hetzner_robot = {
source = "lazureykis/hetzner_robot"
}
}
}
provider "hetzner_robot" {
username = "your-robot-username"
password = "your-robot-password"
}