7c94f06be6
- Add README.md with provider docs, resource/data-source reference, and development instructions - Reorganize examples into per-resource-type subdirectories following Terraform provider conventions, add missing pypi/npm/puppet examples - Add unit tests for helpers, HTTP client, model conversions, and provider registration - Add Woodpecker CI pipelines for lint, test, and build - Add pre-commit config with standard and Go-specific hooks
24 lines
551 B
Terraform
24 lines
551 B
Terraform
terraform {
|
|
required_providers {
|
|
artifactapi = {
|
|
source = "git.unkin.net/unkin/artifactapi"
|
|
version = "0.0.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "artifactapi" {
|
|
endpoint = "https://artifactapi.example.com"
|
|
}
|
|
|
|
# Go module proxy remote proxies a Go module proxy.
|
|
# The provider knows @v/list is mutable; .zip, .mod, and .info files are immutable.
|
|
resource "artifactapi_remote_goproxy" "goproxy" {
|
|
name = "goproxy"
|
|
base_url = "https://proxy.golang.org"
|
|
description = "Go module proxy"
|
|
|
|
immutable_ttl = 0
|
|
mutable_ttl = 300
|
|
}
|