terraform-provider-gitea/examples/resources/gitea_git_hook/resource.tf
Tobias Trabelsi 3f67ba1895
All checks were successful
continuous-integration/drone/push Build is passing
minor cosmetic changes and prepare next release
2022-08-30 20:19:08 +02:00

15 lines
377 B
HCL

resource "gitea_org" "test_org" {
name = "test-org"
}
resource "gitea_repository" "org_repo" {
username = gitea_org.test_org.name
name = "org-test-repo"
}
resource "gitea_git_hook" "org_repo_post-receive" {
name = "post-receive"
user = gitea_org.test_org.name
repo = gitea_repository.org_repo.name
content = file("${path.module}/post-receive.sh")
}