Skip to content

Commit

Permalink
Should not neet to call terraform get (#880)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorinasub17 authored Apr 29, 2021
1 parent bfdf1ce commit 862ec45
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions modules/terraform/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ func InitAndApplyE(t testing.TestingT, options *Options) (string, error) {
return "", err
}

if _, err := GetE(t, options); err != nil {
return "", err
}

return ApplyE(t, options)
}

Expand Down
4 changes: 0 additions & 4 deletions modules/terraform/plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ func InitAndPlanE(t testing.TestingT, options *Options) (string, error) {
return "", err
}

if _, err := GetE(t, options); err != nil {
return "", err
}

return PlanE(t, options)
}

Expand Down
4 changes: 0 additions & 4 deletions modules/terraform/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,5 @@ func InitAndValidateE(t testing.TestingT, options *Options) (string, error) {
return "", err
}

if _, err := GetE(t, options); err != nil {
return "", err
}

return ValidateE(t, options)
}

0 comments on commit 862ec45

Please sign in to comment.