Skip to content

Commit 2760f9a

Browse files
committed
chore: Drop projects from test (#13)
1 parent 5afb2a6 commit 2760f9a

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

test/unit-complete/main.tf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ module "repository" {
3434
homepage_url = var.url
3535
private = false
3636
has_issues = var.has_issues
37-
has_projects = var.has_projects
3837
has_wiki = var.has_wiki
3938
allow_merge_commit = var.allow_merge_commit
4039
allow_rebase_merge = var.allow_rebase_merge
@@ -153,8 +152,6 @@ module "repository" {
153152
tls_private_key.deploy[1].public_key_openssh
154153
]
155154

156-
projects = var.projects
157-
158155
autolink_references = var.autolink_references
159156

160157
app_installations = var.app_installations

test/unit-complete/variables.tf

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ variable "has_issues" {
2828
default = true
2929
}
3030

31-
variable "has_projects" {
32-
description = "Set to true to enable the GitHub Projects features on the repository."
33-
type = bool
34-
default = true
35-
}
36-
3731
variable "has_wiki" {
3832
description = "Set to true to enable the GitHub Wiki features on the repository."
3933
type = bool
@@ -94,15 +88,6 @@ variable "license_template" {
9488
default = "mit"
9589
}
9690

97-
variable "projects" {
98-
description = "A list of projects to create."
99-
type = list(object({
100-
name = string,
101-
body = string
102-
}))
103-
default = []
104-
}
105-
10691
variable "issue_labels" {
10792
description = "A list of issue labels to create."
10893
type = list(object({

0 commit comments

Comments
 (0)