feat(provider): add repository push mirror resource

Closes #12
This commit is contained in:
Julien Dessaux 2025-05-25 17:27:59 +02:00
parent c16a38956a
commit 7d80bf1f63
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 318 additions and 0 deletions

View file

@ -0,0 +1,7 @@
resource "forgejo_repository_push_mirror" "main" {
owner = "adyxax"
remote_address = "https://github.com/adyxax/tfstated"
remote_password = "secret"
remote_username = "adyxax"
repository = "example"
}