Add artifactapi_local_deb and artifactapi_remote_deb resources
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful

This commit is contained in:
2026-08-11 21:50:20 +10:00
parent 2d8584f103
commit b21892217a
8 changed files with 325 additions and 2 deletions
@@ -0,0 +1,4 @@
resource "artifactapi_local_deb" "internal" {
name = "deb-internal"
description = "Internal Deb package repository"
}
@@ -0,0 +1,23 @@
terraform {
required_providers {
artifactapi = {
source = "git.unkin.net/unkin/artifactapi"
version = "0.0.1"
}
}
}
provider "artifactapi" {
endpoint = "https://artifactapi.example.com"
}
# Deb remote proxies a Debian/apt package repository.
# The provider knows the index files (Release, Packages) are mutable; .deb packages are immutable.
resource "artifactapi_remote_deb" "debian" {
name = "debian"
base_url = "http://deb.debian.org/debian"
description = "Debian apt package repository"
immutable_ttl = 0
mutable_ttl = 7200
}