github.com/hugorut/terraform@v1.1.3/website/docs/cli/cloud/command-line-arguments.mdx (about)

     1  ---
     2  page_title: Command Line Arguments
     3  description: Command Line Arguments
     4  ---
     5  
     6  # Command Line Arguments
     7  
     8  When your configuration includes a `cloud` block, commands that
     9  make local modifications to Terraform state and then push them back up to the remote workspace
    10  accept the following option to modify that behavior:
    11  
    12  - `-ignore-remote-version` - Override checking that the local and remote
    13    Terraform versions agree, making an operation proceed even when there is
    14    a mismatch.
    15  
    16    State-modification operations usually require using a local version of the
    17    Terraform CLI that is compatible with the Terraform version selected
    18    in the remote workspace settings. This prevents the
    19    local operation from creating a new state snapshot that the workspace's
    20    remote execution environment cannot decode.
    21  
    22    We recommend against using this option unless absolutely necessary. Overriding this check can result
    23    in a Terraform Cloud workspace that is no longer able to complete remote operations with the currently
    24    selected version of Terraform.