Add artifactapi_local_generic resource
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful

Adds a local generic (raw-file) repository resource so arbitrary binaries -- the
bootapi node rootfs tarballs -- can be hosted on artifactapi and managed in
Terraform. The backend already serves generic locals; only the provider surface
was missing.

- resource_local_generic.go: local repo with package_type=generic (mirrors
  local_rpm), registered in the provider.
- Tests + example.

Claude-Session: https://claude.ai/code/session_015ur3i7D2azsMAWTSVABApv
This commit is contained in:
2026-07-29 21:48:47 +10:00
parent a232a26bf5
commit 14b7c4bdcd
5 changed files with 297 additions and 2 deletions
@@ -0,0 +1,4 @@
resource "artifactapi_local_generic" "rootfs_images" {
name = "rootfs-images"
description = "Prebuilt node rootfs tarballs (bootapi image provisioning)"
}