Skip to content

Releases: hashicorp/terraform-provider-tfe

v0.32.0

20 Jun 23:55
91b0fa9
Compare
Choose a tag to compare

0.32.0 is an impactful release that includes several bug fixes, support for run tasks and several breaking changes that you should review carefully.

BREAKING CHANGES:

  • Removed Authentication Method: Host-specific TF_TOKEN_... environment variable (added in 0.31.0) can no longer be used for token authentication. This method of authentication is incompatible with the Terraform Cloud remote execution model. Please use the TFE_TOKEN environment variable.
  • r/tfe_workspace: Default value of the file_triggers_enabled field is changed to false. This will align the
    file_triggers_enabled field default value with the default value for the same field in the
    TFC API.
    If the value of the file_triggers_enabled field was not explicitly set and either of the fields working_directory
    (not an empty string) or trigger_prefixes was used - to keep the behavior unchanged, the file_trigger_enabled
    field should now explicitly be set to true. (#510)
  • r/tfe_team_access: The permissions attribute requires run_tasks in the block. (#487)

BUG FIXES:

  • Prevent overwriting vcs_repo attributes in r/tfe_workspace when update API call fails (#498)
  • Fix panic crash on trigger_prefixes update in r/tfe_workspace when given empty strings (#518)

FEATURES:

  • r/team, d/team: Add manage_run_tasks to the tfe_team organization_access attributes (#486)
  • New Resource: tfe_organization_run_task (#488)
  • New Resource: tfe_workspace_run_task (#488)
  • New Data Source: d/tfe_organization_run_task (#488)
  • New Data Source: d/tfe_workspace_run_task (#488)
  • r/tfe_notification_configuration: Add Microsoft Teams notification type (#484)

v0.31.0

22 Apr 02:19
86ccf10
Compare
Choose a tag to compare

BUG FIXES:

  • Sensitive values within certain Authorization headers are now redacted from TRACE and DEBUG logs (#479)
  • r/tfe_variable_set: Clarified and fixed variable_set documentation and examples (#473) and (#472)

FEATURES:

  • r/team, d/team: Add sso_team_id to the tfe_team attributes (#457)
  • New Authentication Method: Host-specific TF_TOKEN_... variable can be used for token authentication. See provider documentation for details. (#477)