Skip to content

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Aug 27, 2025

This PR contains the following updates:

Package Type Update Change
hashicorp/terraform required_version minor < 1.13 -> < 1.14
hashicorp/terraform required_version minor >= v0.15.5, < 1.13 -> < 1.14
hashicorp/terraform required_version minor >= v0.15.4, < 1.13 -> < 1.14

Release Notes

hashicorp/terraform (hashicorp/terraform)

v1.13.1

Compare Source

1.13.1 (August 27, 2025)

BUG FIXES:

  • Fix regression that caused terraform test with zero tests to return a non-zero exit code. (#​37477)

  • terraform test: prevent panic when resolving incomplete references (#​37484)

v1.13.0

Compare Source

1.13.0 (August 20, 2025)

NEW FEATURES:

  • The new command terraform stacks exposes some stack operations through the cli. The available subcommands depend on the stacks plugin implementation. Use terraform stacks -help to see available commands. (#​36931)

ENHANCEMENTS:

  • Filesystem functions are now checked for consistent results to catch invalid data during apply (#​37001)

  • Allow successful init when provider constraint matches at least one valid version (#​37137)

  • Performance fix for evaluating high cardinality resources (#​37154)

  • TF Test: Allow parallel execution of teardown operations (#​37169)

  • terraform test: Test authors can now specify definitions for external variables that are referenced within test files directly within the test file itself. (#​37195)

  • terraform test: File-level variable blocks can now reference run outputs and other variables." (#​37205)

  • skip redundant comparisons when comparing planned set changes (#​37280)

  • type checking: improve error message on type mismatches. (#​37298)

BUG FIXES:

  • Added a missing warning diagnostic that alerts users when child module contains an ignored cloud block. (#​37180)

  • Nested module outputs could lose sensitivity, even when marked as such in the configuration (#​37212)

  • workspace: Updated validation to reject workspaces named "" (#​37267)

  • workspace: Updated the workspace delete command to reject "" as an invalid workspace name (#​37275)

  • plan: truncate invalid or dynamic references in the relevant attributes (#​37290)

  • Test run Parallelism of 1 should not result in deadlock (#​37292)

  • static validation: detect invalid static references via indexes on objects. (#​37298)

  • Fixes resource identity being dropped from state in certain cases (#​37396)

NOTES:

  • The command terraform rpcapi is now generally available. It is not intended for public consumption, but exposes certain Terraform operations through an RPC interface compatible with go-plugin. (#​37067)

UPGRADE NOTES:

  • terraform test: External variables referenced within test files should now be accompanied by a variable definition block within the test file. This is optional, but users with complex external variables may see error diagnostics without the additional variable definition. (#​37195)

Previous Releases

For information on prior major and minor releases, refer to their changelogs:


Configuration

📅 Schedule: Branch creation - "every 1 months on the first day of the month" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested review from a team and yoshi-approver as code owners August 27, 2025 16:58
@product-auto-label product-auto-label bot added the samples Issues that are directly related to samples. label Aug 27, 2025
@dpebot
Copy link
Collaborator

dpebot commented Aug 27, 2025

/gcbrun

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary of Changes

Hello @renovate-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request updates the minimum and maximum required versions for HashiCorp Terraform across several configuration files. The change specifically modifies the required_version constraint in various versions.tf files to allow for Terraform versions up to, but not including, 1.14. This update ensures that the projects can leverage improvements and new functionalities introduced in Terraform 1.13.x while maintaining compatibility.

Highlights

  • Terraform Version Update: Updates the required_version constraint for HashiCorp Terraform in multiple versions.tf files to < 1.14. This change enables compatibility with Terraform 1.13.x, allowing the use of the latest features and bug fixes from that release.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This PR updates the Terraform version constraint, but in doing so, it removes the lower version bound. This is risky as it could allow execution with incompatible older Terraform versions. I've added suggestions to each versions.tf file to re-instate the lower bounds, ensuring module stability and preventing potential errors.


terraform {
required_version = "< 1.13"
required_version = "< 1.14"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This version constraint is missing a lower bound. Based on the modules used in this configuration (e.g., terraform-google-modules/project-factory/google which requires Terraform >= 1.3) and for consistency with other modules in this repository, a lower bound should be added to prevent issues with older Terraform versions. A constraint of >= 0.15.4 would be consistent with other modules.

  required_version = ">= 0.15.4, < 1.14"

@dpebot
Copy link
Collaborator

dpebot commented Aug 27, 2025

/gcbrun

5 similar comments
@dpebot
Copy link
Collaborator

dpebot commented Aug 27, 2025

/gcbrun

@dpebot
Copy link
Collaborator

dpebot commented Aug 27, 2025

/gcbrun

@dpebot
Copy link
Collaborator

dpebot commented Aug 27, 2025

/gcbrun

@dpebot
Copy link
Collaborator

dpebot commented Aug 27, 2025

/gcbrun

@dpebot
Copy link
Collaborator

dpebot commented Aug 27, 2025

/gcbrun

@renovate-bot renovate-bot force-pushed the renovate/terraform-monorepo branch from f9df432 to 7763a06 Compare August 28, 2025 22:00
@dpebot
Copy link
Collaborator

dpebot commented Aug 28, 2025

/gcbrun

@dpebot
Copy link
Collaborator

dpebot commented Sep 26, 2025

/gcbrun

@apeabody apeabody added the do not merge Indicates a pull request not ready for merge, due to either quality or timing. label Sep 26, 2025
@forking-renovate
Copy link

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies do not merge Indicates a pull request not ready for merge, due to either quality or timing. samples Issues that are directly related to samples.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants