Error creating Project from custom project templates
GitLab Provider version
3.16.1
GitLab version
GitLab Enterprise Edition 15.3.0-pre
Terraform version
3.16.1
Relevant Terraform Configuration
resource "gitlab_project" "aviator_proj" {
name = var.aviator_full_name
namespace_id = var.root_group
group_with_project_templates_id = redacted
template_project_id = redacted
}
### Relevant log output
```shell
│ Error: POST https://gitlab.com/api/v4/projects: 400 {message: {template_name: ['' is unknown or invalid]}}
│
│ with gitlab_project.aviator_proj,
│ on aviator_llc.tf line 35, in resource "gitlab_project" "aviator_proj":
│ 35: resource "gitlab_project" "aviator_proj" {
│
╵
Description
As per documentation template_name and template_project_id should be mutually exclusive. However, using template_id, I am getting a terraform error related to template_name.