You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: options/options.go
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,6 @@ var TERRAFORM_COMMANDS_WITH_SUBCOMMAND = []string{
19
19
}
20
20
21
21
constDEFAULT_MAX_FOLDERS_TO_CHECK=100
22
-
constDEFAULT_MAX_RETRY_ATTEMPTS=3
23
-
constDEFAULT_SLEEP=5
24
22
25
23
constTerragruntCacheDir=".terragrunt-cache"
26
24
@@ -91,6 +89,12 @@ type TerragruntOptions struct {
91
89
// Sleep is the duration in seconds to wait before retrying
92
90
Sleepint
93
91
92
+
// RetryableErrors is an array of regular expressions with RE2 syntax (https://github.com/google/re2/wiki/Syntax) that qualify for retrying
93
+
RetryableErrors []string
94
+
95
+
// ErrorsRequiringInit is an array of regular expressions with RE2 syntax (https://github.com/google/re2/wiki/Syntax) that qualify for re-running init
96
+
ErrorsRequiringInit []string
97
+
94
98
// Unix-style glob of directories to exclude when running *-all commands
0 commit comments