Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v14] Pin Teleport Terraform Provider to Teleport major version #32898

Merged
merged 3 commits into from
Oct 3, 2023

Commits on Oct 3, 2023

  1. Pin Teleport Terraform Provider to Teleport major version

    The previous constrain `>= (=teleport.version=)` allows Terraform to pick any version bigger than the specified version. This is a problem because `>= 12.0.0` can actually select `14.0.0` which breaks our client guarantees when connecting to Auth server.
    
    This PR forces Terraform to pick any version `>=12.0.0` and `< 13.0.0`. The pessimist version constrain prevents Terraform provider to use versions outside of the specified major version.
    
    Signed-off-by: Tiago Silva <tiago.silva@goteleport.com>
    tigrato committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    549a7db View commit details
    Browse the repository at this point in the history
  2. add terraform reference

    tigrato committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    6b2b6b5 View commit details
    Browse the repository at this point in the history
  3. fix docs

    tigrato committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    dd4e922 View commit details
    Browse the repository at this point in the history