You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: okta/services/idaas/resource_okta_app_bookmark.go
+22-7Lines changed: 22 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,13 @@ other arguments that changed will be applied.`,
44
44
Computed: true,
45
45
Description: `The ID of the associated app_signon_policy. If this property is removed from the application the default sign-on-policy will be associated with this application.`,
46
46
},
47
+
"skip_authentication_policy": {
48
+
Type: schema.TypeBool,
49
+
Optional: true,
50
+
Default: false,
51
+
Description: "When set to true, the provider will not assign or read the authentication policy for this application. This can be useful when the caller lacks the permissions to read or manage policies, or to reduce API calls against the `/api/v1/apps` rate limit.",
52
+
ConflictsWith: []string{"authentication_policy"},
53
+
},
47
54
}),
48
55
Timeouts: &schema.ResourceTimeout{
49
56
Create: schema.DefaultTimeout(1*time.Hour),
@@ -67,9 +74,11 @@ func resourceAppBookmarkCreate(ctx context.Context, d *schema.ResourceData, meta
67
74
iferr!=nil {
68
75
returndiag.Errorf("failed to upload logo for bookmark application: %v", err)
0 commit comments