Skip to content

Latest commit

 

History

History
77 lines (41 loc) · 3.15 KB

CHANGELOG.md

File metadata and controls

77 lines (41 loc) · 3.15 KB

2.3.0 (Unreleased)

2.2.0 (August 08, 2019)

NEW FEATURES:

  • random_password is similar to random_string but is marked sensitive for logs and output [#52]

2.1.2 (April 30, 2019)

  • This release includes another Terraform SDK upgrade intended to align with that being used for other providers as we prepare for the Core v0.12.0 release. It should have no significant changes in behavior for this provider.

2.1.1 (April 12, 2019)

  • This release includes only a Terraform SDK upgrade intended to align with that being used for other providers as we prepare for the Core v0.12.0 release. It should have no significant changes in behavior for this provider.

2.1.0 (March 20, 2019)

IMPROVEMENTS:

  • The provider is now compatible with Terraform v0.12, while retaining compatibility with prior versions.

2.0.0 (August 15, 2018)

BACKWARDS INCOMPATIBILITIES / NOTES:

  • random_string: set the ID for random_string resources to "none". Any terraform configuration referring to random_string.foo.id will need to be updated to reference random_string.foo.result (#17)

NEW FEATURES:

  • random_uuid generates random uuid string that is intended to be used as unique identifiers for other resources (#38)

BUG FIXES:

  • Use UnixNano() instead of Unix() for the current time seed in NewRand() (#27)
  • random_shuffle: if random_shuffle is given an empty list, it will return an empty list

IMPROVEMENTS:

  • Replace ReadPet function in resource_pet with schema.Noop (#34)

1.3.1 (May 22, 2018)

BUG FIXES:

  • Add migration and new schema version for resource_string (#29)

1.3.0 (May 21, 2018)

BUG FIXES:

  • random_integer now supports update (#25)

IMPROVEMENTS:

  • Add optional minimum character constraints to random_string (#22)

1.2.0 (April 03, 2018)

NEW FEATURES:

  • random_integer and random_id are now importable. (#20)

1.1.0 (December 01, 2017)

NEW FEATURES:

  • random_integer resource generates a single integer within a given range. (#12)

1.0.0 (September 15, 2017)

NEW FEATURES:

  • random_string resource generates random strings of a given length consisting of letters, digits and symbols. (#5)

0.1.0 (June 21, 2017)

NOTES:

  • Same functionality as that of Terraform 0.9.8. Repacked as part of Provider Splitout