Skip to content

Commit

Permalink
Remove deprecated GitHub workflow files and update variable definitio…
Browse files Browse the repository at this point in the history
…ns for consistency
  • Loading branch information
Dave Arnold committed Dec 4, 2024
1 parent ff5348a commit b969d20
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 59 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/modtest-dev.yaml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/modtest.yml

This file was deleted.

12 changes: 6 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@ variable "vulnerability_alerts" {
default = false
}

variable gitignore_template {
variable "gitignore_template" {
default = null
}

variable homepage_url {
variable "homepage_url" {
default = null
}

variable security_and_analysis {
variable "security_and_analysis" {
description = <<EOT
Security and Analysis Configuration
The security_and_analysis block supports the following:
Expand All @@ -226,12 +226,12 @@ EOT
type = object({
advanced_security = optional(object({
status = string
}, { status = "disabled" })
}, { status = "disabled" }))
secret_scanning = optional(object({
status = string
}, { status = "disabled" })
}, { status = "disabled" }))
secret_scanning_push_protection = optional(object({
status = string
}, { status = "disabled" })
}, { status = "disabled" }))
})
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
github = {
source = "integrations/github"
source = "integrations/github"
}
}
}

0 comments on commit b969d20

Please sign in to comment.