Skip to content

Commit

Permalink
Merge pull request #554 from okta/changelog
Browse files Browse the repository at this point in the history
Added CHANGELOG for the v3.13.0
  • Loading branch information
MikeMondragon-okta authored Jul 29, 2021
2 parents 3f84004 + dde5c48 commit f46b3ce
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 3.13.0 (Jul 29, 2021)

ENHANCEMENTS:

* Add new `user_factor_question` resource [#551](https://github.com/okta/terraform-provider-okta/pull/551). Thanks, [@pengyuwang-okta](https://github.com/pengyuwang-okta)!
* Add new `okta_behavior` resource [#552](https://github.com/okta/terraform-provider-okta/pull/552). Thanks, [@bogdanprodan-okta](https://github.com/bogdanprodan-okta)!
* Add new `okta_user_security_questions` data source [#552](https://github.com/okta/terraform-provider-okta/pull/552). Thanks, [@bogdanprodan-okta](https://github.com/bogdanprodan-okta)!

## 3.12.1 (Jul 24, 2021)

BUGS:

* Fix provider crash caused by the `okta_policy_rule_signon` resource [#543](https://github.com/okta/terraform-provider-okta/pull/543). Thanks, [@bogdanprodan-okta](https://github.com/bogdanprodan-okta)!
* Fix permissions field set behaviour in o`kta_app_user_schema_property` resource [#543](https://github.com/okta/terraform-provider-okta/pull/543). Thanks, [@bogdanprodan-okta](https://github.com/bogdanprodan-okta)!
* Reverted the changes regarding the users field in the `okta_group` resource that was introducing breaking change [#543](https://github.com/okta/terraform-provider-okta/pull/543). Thanks, [@bogdanprodan-okta](https://github.com/bogdanprodan-okta)!

## 3.12.0 (Jul 20, 2021)

ENHANCEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion okta/resource_okta_policy_rule_sign_on.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func resourcePolicySignOnRule() *schema.Resource {
"risc_level": {
Type: schema.TypeString,
Optional: true,
ValidateDiagFunc: elemInSlice([]string{"ANY", "LOW", "MEDIUM", "HIGH"}),
ValidateDiagFunc: elemInSlice([]string{"", "ANY", "LOW", "MEDIUM", "HIGH"}),
Description: "Risc level: ANY, LOW, MEDIUM or HIGH",
Default: "ANY",
},
Expand Down
3 changes: 2 additions & 1 deletion website/docs/r/policy_rule_signon.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ The following arguments are supported:

- `network_excludes` - (Optional) The network zones to exclude. Conflicts with `network_includes`.

- `risc_level` - (Optional) Risc level: `"ANY"`, `"LOW"`, `"MEDIUM"` or `"HIGH"`. Default is `"ANY"`.
- `risc_level` - (Optional) Risc level: `"ANY"`, `"LOW"`, `"MEDIUM"` or `"HIGH"`. Default is `"ANY"`. It can be also
set to an empty string in case `RISC_SCORING` org feature flag is disabled.

- `behaviors` - (Optional) List of behavior IDs.

Expand Down

0 comments on commit f46b3ce

Please sign in to comment.