Skip to content

Releases: mineiros-io/terraform-aws-cognito-user-pool

v0.9.2

10 Feb 22:22
6f460e6
Compare
Choose a tag to compare

Changelog

Added

  • Added support for AWS provider v4.x

v0.9.1

12 Nov 15:32
f423111
Compare
Choose a tag to compare

Changelog

Added

  • Add support for module_tags
  • Implement support for resource servers through the aws_cognito_resource_server resource. Special thanks to @cornwe19 for providing adding this feature

v0.9.0

20 Oct 09:05
60d596f
Compare
Choose a tag to compare

Changelog

BREAKING

  • Minimum version of the aws provider has been bumped to 3.50.0 to ensure
    support for the enable_token_revocation in the aws_cognito_user_pool_client
    resource.

Fixed

  • Fixed implementation of token_validity_units block.

v0.8.0

10 Oct 23:23
c1ef4c9
Compare
Choose a tag to compare

BREAKING

  • Minimum version of the aws provider has been bumped to 3.32.0 to enable
    support for token_validity_units

Added

  • Add support token_validity_units

v0.7.0

26 Jul 06:41
d532ea7
Compare
Choose a tag to compare

Changelog

Added

  • Add support for Terraform v1.x

v0.6.0

20 May 08:37
9918b23
Compare
Choose a tag to compare

Added

  • Add support for Terraform v0.15

v0.5.0

08 Mar 16:49
f8b338e
Compare
Choose a tag to compare

Added

  • Add support for account_recovery_mechanisms

Removed

  • BREAKING CHANGE: Drop support for Terraform AWS Provider version 2.x

v0.4.1

08 Feb 16:19
83e0630
Compare
Choose a tag to compare

Fixed

  • Fixed examples to use new variable user_device_tracking instead of device_only_remembered_on_user_prompt

v0.4.0

10 Dec 01:20
6a5a53a
Compare
Choose a tag to compare

Changed

  • Add support for Terraform v0.14
  • Update build system to run tests with Terraform v0.14.2

v0.3.0

25 Nov 19:20
a5d1d77
Compare
Choose a tag to compare

Changes

  • Add argument user_device_tracking to set device tracking to OFF, ALWAYS or USER_OPT_IN
  • BREAKING CHANGE: Remove argument device_only_remembered_on_user_prompt. Replaced by user_device_tracking.
    Default behavior did not change. How to migrate:
    • device_only_remembered_on_user_prompt=true: Set user_device_tracking='USER_OPT_IN'
    • device_only_remembered_on_user_prompt=false: Set user_device_tracking='ALWAYS'
    • device_only_remembered_on_user_prompt=null: Set user_device_tracking='OFF'

Fixes

  • Allow to cleanly turn off user device tracking by setting new variable user_device_tracking to OFF. #23
  • The type of the clients output is a map of objects instead of a list.