986aecd28f
Model the provider on terraform-provider-giteavaultsecret, adjusting the schemas to the ghp engine (vault-plugin-secrets-ghp) so its mount, config, and roles can be managed declaratively. - Add provider (local name ghpvaultsecret, source git.unkin.net/unkin/ghpvaultsecret) with VAULT_ADDR/VAULT_TOKEN fallback. - Add ghpvaultsecret_secret_backend: mounts the engine and writes config (base_url, write-only admin_token, write-only ca_cert, tls_skip_verify, request_timeout_seconds); read never returns the sensitive fields. - Add ghpvaultsecret_secret_role: token_type, installation_id, app_record_id, repositories, scopes, session_prefix, ttl, max_ttl; validate that agent roles set installation_id. - Add unit tests for the value conversions and the role/backend field mapping. - Mirror the woodpecker pre-commit/build/test (PR) and tag release (package + PUT zip to the artifactapi terraform registry) pipelines, Makefile version bump/package targets, examples, README, and a Docker e2e harness.
35 lines
903 B
Terraform
35 lines
903 B
Terraform
terraform {
|
|
required_providers {
|
|
ghpvaultsecret = {
|
|
source = "git.unkin.net/unkin/ghpvaultsecret"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "ghpvaultsecret" {
|
|
address = "http://127.0.0.1:8200"
|
|
token = "root"
|
|
}
|
|
|
|
resource "ghpvaultsecret_secret_backend" "ghp" {
|
|
path = "ghp"
|
|
description = "ghp token engine (e2e)"
|
|
# Reachable from inside the vault container, where the plugin runs.
|
|
base_url = "http://ghp:3000"
|
|
tls_skip_verify = true
|
|
|
|
# Ephemeral test fixture, matched by the mock ghp MOCKGHP_ADMIN_TOKEN.
|
|
admin_token = "ghpsvc_e2e_fixture"
|
|
}
|
|
|
|
resource "ghpvaultsecret_secret_role" "ci" {
|
|
backend = ghpvaultsecret_secret_backend.ghp.path
|
|
name = "ci"
|
|
token_type = "agent"
|
|
installation_id = 12345
|
|
repositories = ["unkin/prodenv"]
|
|
scopes = ["contents:read", "pull_requests:write"]
|
|
ttl = 3600
|
|
max_ttl = 86400
|
|
}
|