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
beatzaplentyandClaude Sonnet 4.6 81c8c54f07
ci / test (push) Failing after 5m14s
Release / goreleaser (push) Failing after 4m58s
bump version references to v0.4.0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LFZyrmtKsezBwFWGTWsb2y
2026-08-04 00:04:55 +10:00

17 lines
235 B
Terraform

terraform {
required_providers {
dynu = {
source = "beatz174-bit/dynu"
version = "~> 0.4.0"
}
}
}
provider "dynu" {}
data "dynu_domains" "all" {}
output "domains" {
value = data.dynu_domains.all.domains
}