Skip to content

Commit

Permalink
Run go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumew committed Feb 9, 2020
1 parent 4a74808 commit 20ec545
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
package main

import (
"github.com/terraform-providers/terraform-provider-okta/okta"
"github.com/hashicorp/terraform-plugin-sdk/plugin"
"github.com/terraform-providers/terraform-provider-okta/okta"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_app_user_base_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package okta
import (
"fmt"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func resourceAppUserBaseSchema() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_app_user_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package okta
import (
"fmt"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func resourceAppUserSchema() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_auth_server_claim.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package okta
import (
"net/http"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func resourceAuthServerClaim() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_auth_server_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package okta
import (
"net/http"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func resourceAuthServerPolicy() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_auth_server_policy_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package okta
import (
"net/http"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func resourceAuthServerPolicyRule() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_group_roles.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package okta
import (
"fmt"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func resourceGroupRoles() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_idp_oidc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"testing"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func TestAccOktaIdpOidc_crud(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_idp_saml_signing_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package okta
import (
"net/http"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func resourceIdpSigningKey() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_idp_saml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"testing"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func TestAccOktaIdpSaml_crud(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_idp_social_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"testing"

"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

func TestAccOktaIdpSocial_crud(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_policy_rule_idp_discovery.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package okta

import (
"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

var platformIncludeResource = &schema.Resource{
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_template_email.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package okta

import (
"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

var translationResource = &schema.Resource{
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_user_base_schema.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package okta

import (
"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

const baseSchema = "base"
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_user_schema.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package okta

import (
"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

const customSchema = "custom"
Expand Down
2 changes: 1 addition & 1 deletion okta/user_schema.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package okta

import (
"github.com/terraform-providers/terraform-provider-okta/sdk"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
"github.com/terraform-providers/terraform-provider-okta/sdk"
)

var (
Expand Down

0 comments on commit 20ec545

Please sign in to comment.