Skip to content

Commit

Permalink
Bump Terraform to v0.12.8.
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Miguel Custódio <[email protected]>
  • Loading branch information
bmcustodio committed Sep 11, 2019
1 parent 31630a1 commit d80408e
Show file tree
Hide file tree
Showing 1,572 changed files with 255,269 additions and 42,929 deletions.
444 changes: 350 additions & 94 deletions Gopkg.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@


[[constraint]]
name = "github.com/hashicorp/terraform"
version = "0.11.11"
name = "github.com/google/go-github"
version = "28.1.1"

[[constraint]]
name = "github.com/liamg/go-github"
branch = "master"
name = "github.com/hashicorp/terraform"
version = "0.12.8"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.3.0"
version = "1.4.0"

[[constraint]]
branch = "master"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CODEOWNERS Terraform Provider

[![Build Status](https://travis-ci.org/form3tech-oss/terraform-provider-codeowners.svg?branch=master)](https://travis-ci.org/form3tech-oss/terraform-provider-codeowners)
[![Build Status](https://travis-ci.com/form3tech-oss/terraform-provider-codeowners.svg?branch=master)](https://travis-ci.com/form3tech-oss/terraform-provider-codeowners)

Terraform Provider for GitHub [CODEOWNERS](https://help.github.com/articles/about-code-owners/) files.

Expand Down
2 changes: 1 addition & 1 deletion codeowners/commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

"github.com/liamg/go-github/github"
"github.com/google/go-github/github"
"golang.org/x/crypto/openpgp"
)

Expand Down
2 changes: 1 addition & 1 deletion codeowners/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

"github.com/hashicorp/terraform/helper/schema"
"github.com/liamg/go-github/github"
"github.com/google/go-github/github"
"golang.org/x/oauth2"
)

Expand Down
4 changes: 3 additions & 1 deletion codeowners/resource_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"sort"
"strings"

"github.com/google/go-github/github"
"github.com/hashicorp/terraform/helper/hashcode"
"github.com/hashicorp/terraform/helper/schema"
"github.com/liamg/go-github/github"
)

const codeownersPath = ".github/CODEOWNERS"
Expand Down Expand Up @@ -46,6 +46,7 @@ func resourceFile() *schema.Resource {
},
"rules": {
Type: schema.TypeSet,
ConfigMode: schema.SchemaConfigModeAttr,
Optional: true,
Description: "A list of rules that describe which reviewers should be assigned to which areas of the source code",
Elem: &schema.Resource{
Expand All @@ -57,6 +58,7 @@ func resourceFile() *schema.Resource {
},
"usernames": {
Type: schema.TypeSet,
ConfigMode: schema.SchemaConfigModeAttr,
Required: true,
Description: "A list of usernames or team names using the standard @username or @org/team-name format - using the @ prefix is entirely optional",
Elem: &schema.Schema{
Expand Down
2 changes: 1 addition & 1 deletion codeowners/resource_file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"github.com/liamg/go-github/github"
"github.com/google/go-github/github"
)

const testAccFileConfig = `
Expand Down
202 changes: 202 additions & 0 deletions vendor/cloud.google.com/go/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d80408e

Please sign in to comment.