Skip to content

Releases: hashicorp/terraform-provider-local

v2.5.1

11 Mar 19:22
Compare
Choose a tag to compare

NOTES:

  • No functional changes from v2.5.0. Minor documentation fixes. (#303)

v2.5.0

11 Mar 13:19
Compare
Choose a tag to compare

FEATURES:

  • functions/direxists: Added a new direxists function that checks for the existence of a directory, similar to the built-in fileexists function. (#285)

v2.4.1

12 Dec 14:43
Compare
Choose a tag to compare

NOTES:

  • This release introduces no functional changes. It does however include dependency updates which address upstream CVEs. (#273)

v2.4.0

08 Mar 15:49
Compare
Choose a tag to compare

NOTES:

  • This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#184)

FEATURES:

  • resource/local_file: added support for MD5, SHA1, SHA256, and SHA512 checksum outputs. (#142)
  • resource/local_sensitive_file: added support for MD5, SHA1, SHA256, and SHA512 checksum outputs. (#142)
  • data-source/local_file: added support for MD5, SHA1, SHA256, and SHA512 checksum outputs. (#142)
  • data-source/local_sensitive-file: added support for MD5, SHA1, SHA256, and SHA512 checksum outputs. (#142)

v2.3.0

11 Jan 15:47
Compare
Choose a tag to compare

NOTES:

v2.2.3

18 May 12:07
30e4f77
Compare
Choose a tag to compare

NOTES:

  • resource/local_file: Update docs to prevent confusion that exactly one of the arguments content,
    sensitive_content, content_base64, and source needs to be specified (#123).

  • resource/local_sensitive_file: Update docs to prevent confusion that exactly one of the arguments content,
    content_base64, and source needs to be specified (#123).

  • No functional changes from 2.2.2.

v2.2.2

11 Mar 10:35
Compare
Choose a tag to compare

NOTES:

  • resource/local_sensitive_file: Fixed typo in documentation (default permission is "0700", not "0777").
  • No functional changes from 2.2.1.

v2.2.1

10 Mar 22:17
Compare
Choose a tag to compare

NOTES:

  • This release is a republishing of the 2.2.0 release to fix release asset checksum errors. It is identical otherwise.

v2.2.0

10 Mar 20:11
33cacbe
Compare
Choose a tag to compare

NOTES:

  • resource/local_file: Argument sensitive_content is Deprecated. For creating or accessing files containing sensitive data,
    please use the new resource and data source local_sensitive_file.
    Both are identical to their local_file counterparts, but content and content_base64 attributes are marked as sensitive.

FEATURES:

  • New Data Source: local_sensitive_file (#101 and #106)
  • New Resource: `local_sensitive_file** (#106)