This repository has been archived on 2026-08-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-05-13 05:01:38 +10:00

18 lines
437 B
Terraform

terraform {
required_version = ">= 1.5.0"
required_providers {
dynu = {
source = "beatz174-bit/dynu"
}
}
}
# Local development note:
# This source address stays "beatz174-bit/dynu" while using ~/.terraformrc dev_overrides.
# Terraform will load your local terraform-provider-dynu binary instead of the public registry.
provider "dynu" {
# Set var.dynu_api_key in terraform.tfvars.
api_key = var.dynu_api_key
}