Skip to content

Commit

Permalink
fix source path
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 14, 2025
1 parent ef5ecbf commit 6cfe8fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions copy_images.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ locals {
enabled = true
dest_path = null
name = local.otel_name
source_image = "otel/${local.otel_name}"
source_image = local.otel_name
source_registry = format("%v/%v", local.ent_ecr_source, "docker")
source_tag = local.otel_version
tag = local.otel_version
Expand All @@ -36,7 +36,7 @@ locals {
enabled = true
dest_path = null
name = local.collector_name
source_image = "otel/${local.collector_name}"
source_image = local.collector_name
source_registry = format("%v/%v", local.ent_ecr_source, "docker")
source_tag = local.collector_version
tag = local.collector_version
Expand All @@ -45,7 +45,7 @@ locals {
enabled = true
dest_path = null
name = local.collector_contrib_name
source_image = "otel/${local.collector_contrib_name}"
source_image = local.collector_contrib_name
source_registry = format("%v/%v", local.ent_ecr_source, "docker")
source_tag = local.collector_contrib_version
tag = local.collector_contrib_version
Expand Down

0 comments on commit 6cfe8fc

Please sign in to comment.