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
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@ Scaffold uses AWS S3 for storage of tfstate files. The bucket and location are s
35
35
Scaffold provides a logical separation of several types of environment variable:
36
36
* Global variables
37
37
* Region-scoped global variables
38
+
* Group variables
38
39
* Static environment variables
39
40
* Frequently-changing versions variables
40
41
* Dynamic (S3 stored) variables
@@ -103,6 +104,7 @@ bin/terraform.sh \
103
104
-b/--bucket-prefix `bucket_prefix` \
104
105
-c/--component `component_name` \
105
106
-e/--environment `environment` \
107
+
-g/--group `group` (optional) \
106
108
-i/--build-id `build_id` (optional) \
107
109
-p/--project `project` \
108
110
-r/--region `region` \
@@ -123,6 +125,7 @@ Where:
123
125
* It is usual to provide, for example, the Jenkins _$BUILD_ID_ parameter to Plan jobs, and then manually reference that particular Job ID when running a corresponding apply job.
124
126
*`component_name`: The name of the terraform component in the components directory to run the `action` against.
125
127
*`environment`: The name of the environment the component is to be actioned against, therefore implying the variables file(s) to be included
128
+
*`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
126
129
*`project`: The name of the project being deployed, as per the default bucket-prefix and state file keyspace
127
130
*`region` (optional): The AWS region name unique to all components and terraform processes. Defaults to the value of the _AWS_DEFAULT_REGION_ environment variable.
128
131
*`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