-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
32 lines (31 loc) · 1.08 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
terraform {
required_version = ">= 1.5.6"
required_providers {
github = {
source = "integrations/github"
version = "6.2.1"
}
}
}
resource "github_repository" "repository" {
name = var.name
description = var.description
homepage_url = var.homepage_url
visibility = var.visibility
has_issues = var.has_issues
has_projects = var.has_projects
has_wiki = var.has_wiki
has_downloads = var.has_downloads
auto_init = var.auto_init
gitignore_template = var.gitignore_template
license_template = var.license_template
allow_merge_commit = var.allow_merge_commit
allow_squash_merge = var.allow_squash_merge
allow_rebase_merge = var.allow_rebase_merge
allow_update_branch = var.allow_update_branch
delete_branch_on_merge = var.delete_branch_on_merge
archived = var.archived
topics = var.topics
is_template = var.is_template
vulnerability_alerts = var.vulnerability_alerts
}