Skip to content

Commit

Permalink
Update github_repo.tf (#11)
Browse files Browse the repository at this point in the history
* Update github_repo.tf

* Update variables.tf
  • Loading branch information
David Arnold authored and GitHub committed Nov 6, 2024
1 parent 8a3f1e1 commit 1f4aacf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion github_repo.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ resource "github_repository" "repo" {
has_issues = var.github_has_issues
has_wiki = var.github_has_wiki
topics = var.github_repo_topics
gitignore_template = "Terraform"
gitignore_template = var.gitignore_template
is_template = var.is_template
archived = var.archived
homepage_url = var.homepage_url
vulnerability_alerts = var.vulnerability_alerts
lifecycle {
ignore_changes = [
Expand Down
8 changes: 8 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -203,3 +203,11 @@ variable "vulnerability_alerts" {
type = bool
default = false
}

variable gitignore_template {
default = null
}

variable homepage_url {
default = null
}

0 comments on commit 1f4aacf

Please sign in to comment.