Skip to content

Commit

Permalink
fix: remote apply default true (chanzuckerberg#717)
Browse files Browse the repository at this point in the history
We want the default remote apply behavior to be true so that all plans/applies happen on TFE and not locally.
  • Loading branch information
jakeyheath authored Aug 31, 2022
1 parent c749891 commit 282994b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apply/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func MakeTFEWorkspace(tfVersion string) *TFEWorkspace {
}
defaultGithubBranch := "main"
defaultAutoApply := true
defaultRemoteApply := false
defaultRemoteApply := true
return &TFEWorkspace{
TriggerPrefixes: &defaultTriggerPrefixes,
TerraformVersion: &defaultTerraformVersion,
Expand Down

0 comments on commit 282994b

Please sign in to comment.