Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
duytiennguyen-okta committed May 18, 2023
1 parent 757a891 commit 17375ab
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions okta/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ var (
Optional: true,
Description: "Ignore users sync. This is a temporary solution until 'users' field is supported in all the app-like resources",
Default: false,
Deprecated: "Because of users has been removed, this attribute is a no op and will be removed",
Deprecated: "Because users has been removed, this attribute is a no op and will be removed",
},
"skip_groups": {
Type: schema.TypeBool,
Optional: true,
Description: "Ignore groups sync. This is a temporary solution until 'groups' field is supported in all the app-like resources",
Default: false,
Deprecated: "Because of groups has been removed, this attribute is a no op and will be removed",
Deprecated: "Because groups has been removed, this attribute is a no op and will be removed",
},
}

Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func resourceGroup() *schema.Resource {
Optional: true,
Description: "Ignore users sync. This is a temporary solution until 'users' field is supported in all the app-like resources",
Default: false,
Deprecated: "Because of users has been removed, this attribute is a no op and will be removed",
Deprecated: "Because users has been removed, this attribute is a no op and will be removed",
},
"custom_profile_attributes": {
Type: schema.TypeString,
Expand Down
1 change: 0 additions & 1 deletion okta/resource_okta_policy_rule_idp_discovery_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
)

// TODU
func TestAccOktaPolicyRuleIdpDiscovery_crud(t *testing.T) {
mgr := newFixtureManager(policyRuleIdpDiscovery, t.Name())
config := mgr.GetFixtures("basic.tf", t)
Expand Down
7 changes: 7 additions & 0 deletions okta/resource_okta_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ func resourceUser() *schema.Resource {
},
},
Schema: map[string]*schema.Schema{
"skip_roles": {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Do not populate user roles information (prevents additional API call)",
Deprecated: "Because admin_roles has been removed, this attribute is a no op and will be removed",
},
"city": {
Type: schema.TypeString,
Optional: true,
Expand Down
1 change: 0 additions & 1 deletion okta/resource_okta_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
)

// TODU
func TestAccOktaUser_customProfileAttributes(t *testing.T) {
mgr := newFixtureManager(user, t.Name())
config := mgr.GetFixtures("custom_attributes.tf", t)
Expand Down

0 comments on commit 17375ab

Please sign in to comment.