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: README.md
+14-8Lines changed: 14 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,14 +105,17 @@ The terraformscaffold script is invoked as bin/terraform.sh. Once a state bucket
105
105
106
106
```bash
107
107
bin/terraform.sh \
108
-
-a/--action `action` \
109
-
-b/--bucket-prefix `bucket_prefix` \
110
-
-c/--component `component_name` \
111
-
-e/--environment `environment` \
112
-
-g/--group `group` (optional) \
113
-
-i/--build-id `build_id` (optional) \
114
-
-p/--project `project` \
115
-
-r/--region `region` \
108
+
-a/--action `action` \
109
+
-b/--bucket-prefix `bucket_prefix` \
110
+
-c/--component `component_name` \
111
+
-e/--environment `environment` \
112
+
-g/--group `group` (optional) \
113
+
-i/--build-id `build_id` (optional) \
114
+
-p/--project `project` \
115
+
-r/--region `region` \
116
+
-d/--detailed-exitcode (optional) \
117
+
-n/--no-color (optional) \
118
+
-w/--compact-warnings (optional) \
116
119
-- \
117
120
<additional arguments to forward to the terraform binary call>
118
121
```
@@ -133,4 +136,7 @@ Where:
133
136
*`group` (optional): The name of the group to which the environment belongs, permitting the use of a group tfvars file as a "meta-environment" shared by more than one environment
134
137
*`project`: The name of the project being deployed, as per the default bucket-prefix and state file keyspace
135
138
*`region` (optional): The AWS region name unique to all components and terraform processes. Defaults to the value of the _AWS_DEFAULT_REGION_ environment variable.
139
+
*`detailed-exitcode` (optional): Passes detailed exit code flag to terraform.
140
+
*`no-color` (optional): Passes no-color flag to terraform.
141
+
*`compact-warnings` (optional): Passes compact-warnings flag to terraform.
136
142
*`additional arguments`: Any arguments provided after "--" will be passed directly to terraform as its own arguments, e.g. allowing the provision of a 'target=value' parameter.
0 commit comments