
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>
16 lines
252 B
HCL
16 lines
252 B
HCL
terraform {
|
|
required_providers {
|
|
gitea = {
|
|
source = "go-gitea/gitea"
|
|
version = "0.3.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "gitea" {
|
|
base_url = var.gitea_url
|
|
username = "lerentis"
|
|
password = var.gitea_password
|
|
#token = var.gitea_token
|
|
}
|