Skip to content

Commit

Permalink
Merge pull request #963 from okta/group_schema_property
Browse files Browse the repository at this point in the history
Fixed import for the `okta_group_schema_property` resource
  • Loading branch information
monde authored Feb 10, 2022
2 parents b413390 + 69d7cba commit d584575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion okta/resource_okta_group_custom_schema_property.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (
"time"

"github.com/cenkalti/backoff/v4"

"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/okta/okta-sdk-golang/v2/okta"
Expand Down Expand Up @@ -102,6 +101,7 @@ func resourceGroupSchemaRead(ctx context.Context, d *schema.ResourceData, m inte
d.SetId("")
return nil
}
_ = d.Set("index", d.Id())
err = syncCustomGroupSchema(d, customAttribute)
if err != nil {
return diag.Errorf("failed to set group custom schema property: %v", err)
Expand Down

0 comments on commit d584575

Please sign in to comment.