Skip to content
Discussion options

You must be logged in to vote

If anyone else runs across this we were able to get the configuration working in newer Terragrunt versions (v0.36.12+).

terraform {
    extra_arguments "cache" {
      commands = [
        "init",
        "apply",
        "refresh",
        "import",
        "plan",
        "taint",
        "untaint",
        "show"
      ]
      env_vars = {
        TF_PLUGIN_CACHE_DIR = "/tmp/plugins"
      }
    }

    error_hook "mirror_providers" {
      commands = ["init", "plan"]
      execute  = ["terragrunt", "providers", "mirror", "/tmp/plugins"]
      on_errors = [
        "Required plugins are not installed",
      ]
    }
  }

  retryable_errors = [
    "Required plugins are not installed",
 …

Replies: 3 comments 9 replies

Comment options

You must be logged in to vote
6 replies
@yorinasub17
Comment options

@jmreicha
Comment options

@yorinasub17
Comment options

@jmreicha
Comment options

@jmreicha
Comment options

Comment options

You must be logged in to vote
3 replies
@jmreicha
Comment options

@jmreicha
Comment options

@jmreicha
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by jmreicha
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
2 participants