in helpers/foundation-deployer/stages/data.go [187:194]
func (g GlobalTFVars) CheckString(s string) {
f := reflect.ValueOf(g)
for i := 0; i < f.NumField(); i++ {
if f.Field(i).Kind() == reflect.String && f.Field(i).Interface() == s {
fmt.Printf("# Replace value '%s' for input '%s'\n", s, f.Type().Field(i).Tag.Get("hcl"))
}
}
}