Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jmichalak committed Dec 11, 2024
1 parent da07bee commit 2d71451
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pkg/resources/external_oauth_integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,13 @@ var externalOauthIntegrationSchema = map[string]*schema.Schema{
ConflictsWith: []string{"external_oauth_allowed_roles_list"},
},
"external_oauth_allowed_roles_list": {
Type: schema.TypeSet,
Elem: &schema.Schema{Type: schema.TypeString},
Optional: true,
Description: relatedResourceDescription("Specifies the list of roles that the client can set as the primary role.", resources.AccountRole),
Type: schema.TypeSet,
Elem: &schema.Schema{Type: schema.TypeString},
Optional: true,
Description: relatedResourceDescription("Specifies the list of roles that the client can set as the primary role.", resources.AccountRole),
DiffSuppressFunc: SuppressIfAny(
NormalizeAndCompareIdentifiersInSet("external_oauth_allowed_roles_list"),
// TODO(SNOW-1517937): uncomment
// NormalizeAndCompareIdentifiersInSet("external_oauth_allowed_roles_list"),
// TODO(SNOW-1517937): uncomment
// NormalizeAndCompareIdentifiersInSet("external_oauth_allowed_roles_list"),
),
ConflictsWith: []string{"external_oauth_blocked_roles_list"},
},
Expand Down

0 comments on commit 2d71451

Please sign in to comment.