This repository has been archived by the owner on Nov 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
github_repos.tf
61 lines (48 loc) · 1.67 KB
/
github_repos.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# This is just an example public repository terraform owns from the get-go.
resource "github_repository" "terraform_public_repository" {
name = "terraform_public_repository"
description = "My example repository controlled by terraform public, and archived"
private = false
has_issues = true
has_projects = true
has_wiki = false
default_branch = "master"
archived = true
}
# This is just an example private repository, if I ever need it in the future.
# resource "github_repository" "terraform_private_repository" {
# name = "terraform_private_repository"
# description = "My example repository controlled by terraform private"
# private = true
# }
resource "github_repository" "asgharlabs-centos7_repository" {
name = "asgharlabs-centos7"
description = "CentOS 7 templates for asgharlabs.io"
private = false
has_issues = true
has_projects = false
has_wiki = false
default_branch = "master"
archived = false
}
resource "github_repository" "asgharlabs-debian10_repository" {
name = "asgharlabs-debian10"
description = "Debian 10 templates for asgharlabs.io"
private = false
has_issues = true
has_projects = false
has_wiki = false
default_branch = "master"
archived = false
}
resource "github_repository" "vcenter-packer-ansible-inspec_repository" {
name = "vcenter-packer-ansible-inspec"
description = " An example Jenkins Pipeline that builds and verifies templates for vCenter"
private = false
has_issues = true
has_projects = false
has_wiki = false
default_branch = "master"
archived = false
topics = ["vcenter"]
}