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
| environment_variables | A list of maps, that contain both the key 'name' and the key 'value' to be used as additional environment variables for the build. | list |`<list>`| no |
72
78
| github_oauth_token | GitHub Oauth Token with permissions to access private repositories | string | - | yes |
73
79
| image_repo_name | ECR repository name to store the Docker image built by this module. Used as CodeBuild ENV variable when building Docker images. [For more info](http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html)| string |`UNSET`| no |
74
80
| image_tag | Docker image tag in the ECR repository, e.g. 'latest'. Used as CodeBuild ENV variable when building Docker images. [For more info](http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html)| string |`latest`| no |
@@ -177,6 +183,13 @@ See [LICENSE](LICENSE) for full details.
177
183
under the License.
178
184
179
185
186
+
187
+
188
+
189
+
190
+
191
+
192
+
180
193
## Trademarks
181
194
182
195
All other trademarks referenced herein are the property of their respective owners.
| environment_variables | A list of maps, that contain both the key 'name' and the key 'value' to be used as additional environment variables for the build. | list |`<list>`| no |
16
17
| github_oauth_token | GitHub Oauth Token with permissions to access private repositories | string | - | yes |
17
18
| image_repo_name | ECR repository name to store the Docker image built by this module. Used as CodeBuild ENV variable when building Docker images. [For more info](http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html)| string |`UNSET`| no |
18
19
| image_tag | Docker image tag in the ECR repository, e.g. 'latest'. Used as CodeBuild ENV variable when building Docker images. [For more info](http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html)| string |`latest`| no |
Copy file name to clipboardExpand all lines: variables.tf
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -113,3 +113,14 @@ variable "image_tag" {
113
113
default="latest"
114
114
description="Docker image tag in the ECR repository, e.g. 'latest'. Used as CodeBuild ENV variable when building Docker images. [For more info](http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html)"
115
115
}
116
+
117
+
variable"environment_variables" {
118
+
type="list"
119
+
120
+
default=[{
121
+
"name"="NO_ADDITIONAL_BUILD_VARS"
122
+
"value"="TRUE"
123
+
}]
124
+
125
+
description="A list of maps, that contain both the key 'name' and the key 'value' to be used as additional environment variables for the build."
0 commit comments