We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b24071 commit 1b27d76Copy full SHA for 1b27d76
CHANGELOG.md
@@ -2,7 +2,8 @@
2
==================
3
- Fixed rendering of STORE environment variables in components
4
- Updated Terraform version to 0.13.4
5
-
+- Fix `--auto-approve` option on `mach apply` command
6
+
7
8
0.2.0 (06-10-2020)
9
=================
src/mach/terraform.py
@@ -49,7 +49,7 @@ def apply_terraform(
49
cmd = ["apply"]
50
if auto_approve:
51
cmd += ["-auto-approve"]
52
- run_terraform(["apply"], site_dir)
+ run_terraform(cmd, site_dir)
53
54
55
def azure_sp_login():
0 commit comments