Difference between revisions of "Terragrunt.hcl"

From wikieduonline
Jump to navigation Jump to search
Line 11: Line 11:
 
  }
 
  }
 
   
 
   
<pre>
+
 
generate "remote_states" {
+
[[generate]] "remote_states" {
  path      = "tg_remote_states.tf"
+
  path      = "tg_remote_states.tf"
  if_exists = "overwrite"
+
  if_exists = "overwrite"
  contents = templatefile("../../../remote-states.tmpl",
+
  contents = templatefile("../../../remote-states.tmpl",
  {
+
  {
    remote_states = [
+
    remote_states = [
      {
+
      {
        "name" = "vpc"
+
        "name" = "vpc"
        "bucket" = "${get_env("AWS_SESSION_NAME")}-state-storage"
+
        "bucket" = "${get_env("AWS_SESSION_NAME")}-state-storage"
        "key" = "terraform/${get_env("AWS_SESSION_NAME")}/${get_env("AWS_ENV")}-vpc"
+
        "key" = "terraform/${get_env("AWS_SESSION_NAME")}/${get_env("AWS_ENV")}-vpc"
      }
+
      }
    ]
+
    ]
  })
+
  })
}
+
}
</pre>
 
  
 
== See also ==
 
== See also ==

Revision as of 06:08, 13 March 2023

https://terragrunt.gruntwork.io/docs/reference/built-in-functions/#find_in_parent_folders

find_in_parent_folders


Examples

include {
  path = find_in_parent_folders()
}

generate "remote_states" {
  path      = "tg_remote_states.tf"
  if_exists = "overwrite"
  contents = templatefile("../../../remote-states.tmpl",
  {
    remote_states = [
      {
        "name" = "vpc"
        "bucket" = "${get_env("AWS_SESSION_NAME")}-state-storage"
        "key" = "terraform/${get_env("AWS_SESSION_NAME")}/${get_env("AWS_ENV")}-vpc"
      }
    ]
  })
}

See also

Advertising: