terraform-provider-gitea/examples/resources/gitea_user/resource.tf
Tobias Trabelsi f9e9235726
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build was killed
added user resource and fixed some typos
2022-06-14 23:24:42 +02:00

7 lines
204 B
HCL

resource "gitea_user" "test" {
username = "test"
login_name = "test"
password = "Geheim1!"
email = "test@user.dev"
must_change_password = false
}