Skip to content
Discussion options

You must be logged in to vote

Did you recently update terragrunt to the latest version? This may be an issue with the introduction of the bucket state syncing feature in Terragrunt.

Can you try setting disable_bucket_update = true on the remote_state block and see if that avoids the issue? E.g.:

remote_state {
  backend = "s3"
  generate = {
    path      = "backend.tf"
    if_exists = "overwrite_terragrunt"
  }
  config = {
    bucket = "my-state-bucket"

    key = "${path_relative_to_include()}/terraform.tfstate"
    region         = "us-east-1"
    encrypt        = true
    dynamodb_table = "terraform-locks"
  }
  disable_bucket_update = true
}

Replies: 2 comments 7 replies

Comment options

You must be logged in to vote
4 replies
@tcourtnage-tbl
Comment options

@yorinasub17
Comment options

@tcourtnage-tbl
Comment options

@gzjon
Comment options

Answer selected by yorinasub17
Comment options

You must be logged in to vote
3 replies
@tcourtnage-tbl
Comment options

@OlesYudin
Comment options

@OlesYudin
Comment options

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