aboutsummaryrefslogtreecommitdiffstats
path: root/terraform/misc.tf
blob: 7a9f75496db2302a973646e35dbc9aae16cba14a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
resource "github_repository" "terraform-github" {
  name        = "terraform-github"
  description = "Terraform configuration managing my github repositories"
  topics      = ["terraform", "github"]

  visibility = "private"
  archived   = false

  has_discussions = false
  has_projects    = false
  has_issues      = true
  homepage_url    = "https://github.com/kliwniloc"
}