added terraform tests for the resource Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/72 Co-authored-by: Jörg Markert <joerg.markert@gmail.com> Co-committed-by: Jörg Markert <joerg.markert@gmail.com>
15 lines
205 B
HCL
15 lines
205 B
HCL
variable "repo_name" {
|
|
type = string
|
|
default = "test-repo"
|
|
}
|
|
|
|
variable "org_name" {
|
|
type = string
|
|
default = "test-org"
|
|
}
|
|
|
|
variable "user_name" {
|
|
type = string
|
|
default = "test_user"
|
|
}
|
|
|