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: terraform/Makefile
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,18 @@ init-reconfigure:
32
32
plan: workspace
33
33
$(tf_cmd) plan $(tf_vars)
34
34
35
+
plan-ci: workspace
36
+
$(tf_cmd) plan $(tf_vars) -out=tfplan -input=false
37
+
35
38
plan-changes: workspace
36
39
$(tf_cmd) plan $(tf_vars) -out=plan &&$(tf_cmd) show -no-color -json plan | jq -r '.resource_changes[] | select(.change.actions[0]=="update" or .change.actions[0]=="create" or .change.actions[0]=="add") | .address'
37
40
41
+
# TODO - remove --auto-approve once we've switched to the new deployment pipeline in GitHub Actions
0 commit comments