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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,8 +44,8 @@ module "build" {
44
44
| privileged_mode | "" | (Optional) If set to true, enables running the Docker daemon inside a Docker container on the `CodeBuild` instance. Used when building Docker images |
45
45
| aws_region | "" | (Optional) AWS Region, _e.g._`us-east-1`. Used as `CodeBuild` ENV variable when building Docker images |
46
46
| aws_account_id | "" | (Optional) AWS Account ID. Used as `CodeBuild` ENV variable when building Docker images |
47
-
| image_repo_name | "" | (Optional) ECR repository name to store the Docker image built by this module. Used as `CodeBuild` ENV variable when building Docker images |
48
-
| image_tag | "" | (Optional) Docker image tag in the ECR repository, _e.g._`latest`. Used as `CodeBuild` ENV variable when building Docker images |
47
+
| image_repo_name | "UNSET"| (Optional) ECR repository name to store the Docker image built by this module. Used as `CodeBuild` ENV variable when building Docker images |
48
+
| image_tag | "latest"| (Optional) Docker image tag in the ECR repository, _e.g._`latest`. Used as `CodeBuild` ENV variable when building Docker images |
Copy file name to clipboardExpand all lines: variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -58,12 +58,12 @@ variable "aws_account_id" {
58
58
59
59
variable"image_repo_name" {
60
60
type="string"
61
-
default=""
61
+
default="UNSET"
62
62
description="(Optional) 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"
63
63
}
64
64
65
65
variable"image_tag" {
66
66
type="string"
67
-
default=""
67
+
default="latest"
68
68
description="(Optional) 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"
0 commit comments