Skip to content

Commit

Permalink
remove variables for GitHub provider and use GitHub env vars
Browse files Browse the repository at this point in the history
There is currently an issue with provider config: integrations/terraform-provider-github#876
  • Loading branch information
dan-hill2802 committed Oct 3, 2021
1 parent 17102db commit c783d95
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
5 changes: 1 addition & 4 deletions provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,4 @@ terraform {
}
}

provider "github" {
token = var.github_token
organization = var.github_organization
}
provider "github" {}
9 changes: 0 additions & 9 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,9 +0,0 @@
variable "github_organization" {
type = string
description = "GitHub Organisation to configure"
}

variable "github_token" {
type = string
description = "GitHub personal access token for managing organisation"
}

0 comments on commit c783d95

Please sign in to comment.