From ec13cd43c14921b367e845296337fbf0afa8d969 Mon Sep 17 00:00:00 2001 From: Soren Martius Date: Mon, 6 Jan 2020 08:48:02 -0300 Subject: [PATCH] set auto_init per default to true and has_issues to false --- README.adoc | 18 ++++++++++-------- variables.tf | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/README.adoc b/README.adoc index d0e0f51d..32ec400c 100644 --- a/README.adoc +++ b/README.adoc @@ -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 @@ -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. diff --git a/variables.tf b/variables.tf index 8058835d..e829c85f 100644 --- a/variables.tf +++ b/variables.tf @@ -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" {