Skip to content

Commit 82e3b08

Browse files
authored
allow unknown values in rule dynamic blocks (#2771)
1 parent 6a96f78 commit 82e3b08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

okta/services/idaas/resource_okta_app_signon_policy_rules.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ func (r *appSignOnPolicyRulesResource) ValidateConfig(ctx context.Context, req r
252252
return
253253
}
254254
var rules []policyRuleModel
255-
resp.Diagnostics.Append(data.Rules.ElementsAs(ctx, &rules, false)...)
255+
resp.Diagnostics.Append(data.Rules.ElementsAs(ctx, &rules, true)...)
256256
if resp.Diagnostics.HasError() {
257257
return
258258
}

0 commit comments

Comments
 (0)