generated from terramate-io/terramate-quickstart-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterramate.tm.hcl
37 lines (31 loc) · 891 Bytes
/
terramate.tm.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
terramate {
required_version = ">= 0.9.0"
# required_version_allow_prereleases = true
config {
# Configure the namespace of your Terramate Cloud organization
cloud {
organization = "terramate-demo"
}
git {
default_remote = "origin"
default_branch = "main"
# Optionally disable git safe guards
# Learn more: https://terramate.io/docs/cli/orchestration/safeguards
# check_remote = false
# check_untracked = false
# check_uncommitted = false
}
run {
env {
TF_PLUGIN_CACHE_DIR = "${terramate.root.path.fs.absolute}/.tf_plugin_cache_dir"
}
# Optionally disable code generation safe guard
# Learn more: https://terramate.io/docs/cli/orchestration/safeguards
# check_gen_code = true
}
# Enable Terramate Scripts
experiments = [
"scripts",
]
}
}