-
Notifications
You must be signed in to change notification settings - Fork 112
Open
Description
It would be incredibly helpful to allow this module to support GitHub's Discussions feature, similar to how the has_issues
, has_wiki
, and has_projects
works.
terraform-github-repository/variables.tf
Line 57 in ee6001a
variable "has_issues" { |
terraform-github-repository/variables.tf
Line 63 in ee6001a
variable "has_projects" { |
terraform-github-repository/variables.tf
Line 69 in ee6001a
variable "has_wiki" { |
mhemken-vts
Activity
meddlin commentedon Mar 30, 2023
This PR may be beneficial to this issue: integrations/terraform-provider-github#1443
And this open issue, too: integrations/terraform-provider-github#1442
Apologies for not including this initially. I'm still learning HCL, and this repo's relationship with terraform-provider-github.
shinenelson commentedon Jul 10, 2023
This feature was introduced in v5.14.0. This means that we would have to bump the minimum provider requirements to
>= 5.14.0
.Since #148 is already bumping the minimum provider requirement to
>= 5.16.0
, and it has other minor boolean changes as well, maybe the changes required to resolve this issue could also be merged in along with it.Note to maintainers : I offered to obsolete the
defaults
variable in #148. I could create a pull request that resolves this issue as well according to your preference.