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: CHANGES.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
## v0.2
4
4
5
+
New features:
6
+
7
+
* You can now choose to specify Terraform variables on the command line using `--terraform-variable` (if reading them from a file using `--terraform-variables-from` is undesirable)
8
+
9
+
Breaking changes:
10
+
11
+
* The `--terraform-variables` command-line argument has been renamed to `--terraform-variables-from`.
12
+
5
13
Bug fixes:
6
14
7
15
* Fetching source from a directory now works correctly (#1)
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,9 @@ Well now you do. If you can express it as a Terraform configuration, you can use
10
10
The driver accepts the following arguments:
11
11
12
12
*`--terraform-config` (Required) - The path (or URL) of the Terraform configuration to use
13
-
*`--terraform-additional-variables` (Optional) - An optional file containing the JSON that represents additional variables for the Terraform configuration
13
+
*`--terraform-variable` (Optional) - One or more items of the form "name=value" representing additional variables for the Terraform configuration
14
+
For example: `--terraform-variable variable1=foo --terraform-variable variable2=bar`
15
+
*`--terraform-variables-from` (Optional) - An optional file containing the JSON that represents additional variables for the Terraform configuration
14
16
*`--terraform-refresh` (Optional) - A flag which, if specified, will cause the driver to refresh the configuration after applying it
0 commit comments