Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/local-repo/repos.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resource "github_repository" "repo" {
has_issues = true
has_projects = false
has_wiki = false
vulnerability_alerts = true
vulnerability_alerts = !var.archived
archived = var.archived
dynamic "template" {
for_each = toset(
Expand Down
6 changes: 6 additions & 0 deletions repos.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ locals {
}
public_repo = false
}
"infrahouse-app" = {
"description" = "InfraHouse SaaS application - frontend, backend, and schema definitions."
"type" = "python_app"
"template_repo" = null
public_repo = false
}
"infrahouse-core" = {
"description" = <<-EOF
Python library for AWS infrastructure automation - EC2 instance management,
Expand Down
Loading