terraform-provider-gitea/examples/main.tf
Tobias Trabelsi a79db16011
Some checks failed
continuous-integration/drone/push Build is failing
added repository resource and moved repo
2022-06-04 17:17:08 +02:00

9 lines
185 B
HCL

resource "gitea_repository" "test" {
username = "lerentis"
name = "test"
private = true
issue_labels = "Default"
license = "MIT"
gitignores = "Go"
}