-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
67 lines (59 loc) · 3.03 KB
/
variables.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
62
63
64
65
66
67
variable "owner" {}
#---------------------------------------------------------------------------------------------
# Settings | (ie. Organization Settings)
#---------------------------------------------------------------------------------------------
variable "org_billing_email" {}
variable "org_name" {}
variable "org_description" {}
variable "org_company" {}
variable "org_email" {}
variable "org_location" {}
variable "org_has_organization_projects" {}
variable "org_has_repository_projects" {}
variable "org_default_repository_permission" {}
variable "org_members_can_create_repositories" {}
variable "org_members_can_create_public_repositories" {}
variable "org_members_can_create_private_repositories" {}
variable "org_members_can_create_internal_repositories" {}
variable "org_members_can_create_pages" {}
variable "org_members_can_create_public_pages" {}
variable "org_members_can_create_private_pages" {}
variable "org_members_can_fork_private_repositories" {}
variable "org_web_commit_signoff_required" {}
variable "org_advanced_security_enabled_for_new_repositories" {}
variable "org_dependabot_alerts_enabled_for_new_repositories" {}
variable "org_dependabot_security_updates_enabled_for_new_repositories" {}
variable "org_dependency_graph_enabled_for_new_repositories" {}
variable "org_secret_scanning_enabled_for_new_repositories" {}
variable "org_secret_scanning_push_protection_enabled_for_new_repositories" {}
#---------------------------------------------------------------------------------------------
# Settings > Actions | (ie Organization Actions Settings)
#---------------------------------------------------------------------------------------------
variable "org_allowed_actions" {}
variable "org_actions_enabled_repositories" {}
variable "org_actions_github_owned_allowed" {}
variable "org_actions_verified_allowed" {}
variable "org_actions_allowed_patterns" {}
#---------------------------------------------------------------------------------------------
# People > Members | (ie Organization Members)
#---------------------------------------------------------------------------------------------
variable "org_member_map" {}
# #---------------------------------------------------------------------------------------------
# # Teams | (ie Organization Teams/Settings/Members)
# #---------------------------------------------------------------------------------------------
variable "teams_map" {}
# #---------------------------------------------------------------------------------------------
# # Repositories
# #---------------------------------------------------------------------------------------------
variable "repo_map" {}
# #---------------------------------------------------------------
# variable "milestone_title" {}
# variable "milestone_desc" {}
# variable "milestone_due_date" {}
#---------------------------------------------------------------
# variable "collaborator_username" {}
# variable "invitee_token" {}
# variable "org_project_name" {}
# variable "org_project_body" {}
# variable "repo_project_name" {}
# variable "repo_project_body" {}