NEW FEATURES:
random_password
is similar torandom_string
but is marked sensitive for logs and output [#52]
- 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.
- 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.
IMPROVEMENTS:
- The provider is now compatible with Terraform v0.12, while retaining compatibility with prior versions.
BACKWARDS INCOMPATIBILITIES / NOTES:
random_string
: set the ID for random_string resources to "none". Any terraform configuration referring torandom_string.foo.id
will need to be updated to referencerandom_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
: ifrandom_shuffle
is given an empty list, it will return an empty list
IMPROVEMENTS:
- Replace ReadPet function in
resource_pet
with schema.Noop (#34)
BUG FIXES:
- Add migration and new schema version for
resource_string
(#29)
BUG FIXES:
random_integer
now supports update (#25)
IMPROVEMENTS:
- Add optional minimum character constraints to
random_string
(#22)
NEW FEATURES:
random_integer
andrandom_id
are now importable. (#20)
NEW FEATURES:
random_integer
resource generates a single integer within a given range. (#12)
NEW FEATURES:
random_string
resource generates random strings of a given length consisting of letters, digits and symbols. (#5)
NOTES:
- Same functionality as that of Terraform 0.9.8. Repacked as part of Provider Splitout