Skip to content

Latest commit

 

History

History
331 lines (180 loc) · 8.68 KB

CHANGELOG.md

File metadata and controls

331 lines (180 loc) · 8.68 KB

3.5.0 (Unreleased)

3.4.0 (July 30, 2020)

ENHANCEMENTS:

  • Add resource definition for Okta Event Hooks. #14, Thanks, @mbudnek!
  • Adding support for GROUP_MEMBERSHIP_ADMIN & REPORT_ADMIN. #138 Thanks, ymylei!

BUG FIXES:

3.3.0 (May 29, 2020)

ENHANCEMENTS:

  • Add user lockout notification channels. #15, Thanks, @thehunt33r!
  • Adding support for SMS template changes. #18 Thanks, @gusChan!

3.2.0 (April 03, 2020)

BUG FIXES:

  • Documentation, id is an output of app_oauth. #98 Thanks, beyondbill!

ENHANCEMENTS:

  • Improve app filtering and update Terraform SDK. #97 Thanks, quantumew! 🎉

3.1.1 (March 18, 2020)

ENHANCEMENTS:

  • Add unique property to UserSchema. #12 Thanks, @gusChan!

3.1.0 (February 19, 2020)

RELEASE:

  • First release under terraform-providers organization with binary published to releases.hashicorp.com

3.0.0 (October 16, 2019)

FEATURES:

  • Updated provider to support Terraform v0.12.0

3.0.1

FEATURES:

  • New Resource: okta_inline_hook

ENHANCEMENTS:

  • Add missing okta_idp_saml settings

3.0.2

ENHANCEMENTS:

  • Use backoff/retries functionality for XML API calls

3.0.3

FEATURES:

  • New Data Source: okta_idp_saml

ENHANCEMENTS:

  • Support import user by email

3.0.4

FEATURES:

  • New Data Source: Add okta_app_saml data source
  • New Data Source: Add okta_app_metadata_saml data source
  • New Data Source: Add okta_idp_metadata_saml data source

ENHANCEMENTS:

  • Change type of custom_profile_attributes from map to JSON string to support all types

BUG FIXES:

  • Fix group filter bug, filter_type and filter_value were not being sync'd

3.0.5

BUG FIXES:

  • Fix bug introduced in v3.0.4. User data source was not updated to the new caustom_profile_attribute type
  • Added test to cover this scenario, tests were passiing

3.0.6

ENHANCEMENTS:

  • Allow client_id to be set on OIDC application, while also maintaining the computed version. With some auth methods, such as basic auth, this is possible.

3.0.7

ENHANCEMENTS:

  • Add group_assignments for SAML and social IdPs

3.0.8

ENHANCEMENTS:

  • Add issuer_mode to social IdP. Our test org does not have a custom domain setup, thus it was working there but not in other orgs. Hard to test both scenarios in one org.

3.0.9

FEATURES:

  • New Resource: okta_template_email
  • New Resource: okta_group_roles

3.0.10

FEATURES:

  • New Resource: okta_network_zone

3.0.11

BUG FIXES:

3.0.12

BUG FIXES:

  • Ensure schema does not panic after retry

3.0.13

FEATURES:

  • New Resource: okta_user_base_schema

ENHANCEMENTS:

  • Add missing attribute, match_type and match_attribute, on social idp resource

3.0.14

BUG FIXES:

  • Fix logic around including/excluding networks on policy rules

3.0.15

ENHANCEMENTS:

  • Update Okta SDK
  • Filter out GROUP based admin roles when processing user admin_roles attribute

3.0.16

  • Fix issues around okta_policy_rule_idp_discovery
    • app_include and app_exlcude were missing required properties
    • user_identifier_type was being added even when not defined, causing API errors
  • Fix integer array type

3.0.17

FEATURES:

  • New Resource: okta_app_user_schema
  • New Resource: okta_app_user_base_schema
  • New Resource: okta_app_user resource
  • New Resource: okta_app_group resource

ENHANCEMENTS:

  • Add required field to base schema

3.0.18

ENHANCEMENTS:

  • Support SHA-1 signing algorithm on IdPs

BUG FIXES:

  • Fix bug where audience is reset on IdP update because it is omitted from the payload

3.0.19

BUG FIXES:

  • Fix diff issues around okta_policy_rule_idp_discovery
  • Allow provisioning_action for IdPs to be set to DISABLED

3.0.20

BUG FIXES:

  • Fix okta_auth_server_claim, group_filter_type could not be set to STARTS_WITH due to a typo

3.0.21

ENHANCEMENTS:

  • Expose scope property on okta_user_schema
  • Allow setting of OAuth application visibility settings

3.0.22

BUG FIXES:

  • Send profileMaster along with IdP, so the config is recognized by Okta API
  • Fix bug in SDK related to retries and the request body being empty on subsequent requests.

3.0.23

ENHANCEMENTS:

  • Add external_name property to the okta_app_user_schema and okta_user_schema

3.0.24

ENHANCEMENTS:

  • Support profile on okta_oauth_app resource

3.0.25

ENHANCEMENTS:

  • Support setting an auth server scope as the default
  • Support profile and priority on okta_app_group_assignment
  • Support profile on okta_app_user

BUG FIXES:

  • Fix bug with supporting profile on okta_oauth_app resource

3.0.26

ENHANCEMENTS:

  • Support array enums in okta_user_schema and okta_app_user_schema as array_enum and array_one_of

3.0.27

ENHANCEMENTS:

  • Update refresh token window validation to account for new upper limit of 5 years

3.0.28

BUG FIXES:

  • Remove resource from state on 404. (#269)

3.0.29

BUG FIXES:

  • Ensure we safely sync auth server properties. (#299)
  • MANUAL rotation mode can only be set on an auth server on update. Ensure we run update after create for that scenario. (#287)

3.0.30

ENHANCEMENT:

  • Update to new separate Terraform SDK (#307)

3.0.31

BUG FIXES:

  • Ensure okta_app_group_assignment resource syncs using the right read function. (#307)

3.0.32

BUG FIXES:

  • Ensure okta_app_group_assignment and okta_app_user resources properly take multiple ids on the import functions. (#307)
  • Ensure okta_user does not error on 404 (#313)

3.0.33

FEATURES:

  • New Resource: okta_profile_mapping (#246)
  • New Resource: okta_app_basic_auth (#329)

3.0.34

BUG FIXES:

  • Policy values could not be set to 0. Doing so resulted in the SDK omitting them, resulting in Okta resetting the values to default.

3.0.35

ENHANCEMENT:

  • Require target_id on okta_profile_mapping to avoid ambiguity

FEATURES:

  • New Data Source: okta_user_profile_mapping_source (#340)

3.0.36

BUG FIXES

  • Schema merging helper function was mutating input schema causing side effects when used in a particular way. Used shallow copying to avoid this side effect. (#338)
  • Ensure response is not nil when checking status code (#307)

3.0.37

BUG FIXES

  • Ensure index is sync'd on import to avoid recreation.

3.0.38

ENHANCEMENT:

  • Support password, recovery_answer, and recovery_question as attributes on the okta_user resource.