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
18 changes: 10 additions & 8 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ Using `For, For-Each and Dynamic Nested Blocks` you can now dynamically add and
the necessity to render the whole list of resources again. Terraform will only add and remove the items you want it to.
====

== Table of Contents
toc::[]

== Requirements
This module requires version `~> 0.12.9` of Terraform.
This module requires version `~> 2.2` of the GitHub provider

== Features
This module uses https://github.com/terraform-providers/terraform-provider-github/releases[Terraform GitHub provider v2.2.1] that supports the following resources:

* Repositories
* Branch Protections
* Teams & Collaborators
Expand All @@ -45,17 +55,9 @@ the necessity to render the whole list of resources again. Terraform will only a
* Projects
* Webhooks

== Table of Contents
toc::[]

== Requirements
This module requires version `~> 0.12.9` of Terraform.
This module requires version `~> 2.2` of the GitHub provider

== Examples
For a complete example please see link:/examples[examples] directory.


== Limitations
- Currently the https://www.terraform.io/docs/providers/github/index.html[GitHub Provider] doesn't support to rename repositories.
- Currently the https://www.terraform.io/docs/providers/github/index.html[GitHub Provider] doesn't support to manage personal repositories, outside of organizations.
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ variable "private" {
variable "has_issues" {
type = bool
description = "Set to true to enable the GitHub Issues features on the repository."
default = true
default = false
}

variable "has_projects" {
Expand Down