File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ module "docker_build_from_ecr" {
128128 dir_sha = local.dir_sha
129129 }
130130
131- cache-from = [" ${ module . ecr . repository_url } :latest" ]
131+ cache_from = [" ${ module . ecr . repository_url } :latest" ]
132132}
133133
134134module "ecr" {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ resource "docker_image" "this" {
1717 dockerfile = var. docker_file_path
1818 build_args = var. build_args
1919 platform = var. platform
20- cache_from = var. cache-from
20+ cache_from = var. cache_from
2121 }
2222
2323 force_remove = var. force_remove
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ variable "triggers" {
113113 default = {}
114114}
115115
116- variable "cache-from " {
116+ variable "cache_from " {
117117 description = " List of images to consider as cache sources when building the image"
118118 type = list (string )
119119 default = []
You can’t perform that action at this time.
0 commit comments