Skip to content

Commit 341aee7

Browse files
committed
fix quoting
1 parent ec1df4b commit 341aee7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/provider/cached_image_data_source.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ func (d *CachedImageDataSource) Read(ctx context.Context, req datasource.ReadReq
312312
}
313313
tflog.Info(ctx, fmt.Sprintf("found image: %s@%s", opts.CacheRepo, digest))
314314
data.ID = types.StringValue(digest.String())
315-
data.Image = types.StringValue(fmt.Sprintf("%s@%s", data.CacheRepo, digest.String()))
315+
data.Image = types.StringValue(fmt.Sprintf("%s@%s", opts.CacheRepo, digest))
316316
}
317317

318318
// Compute the env attribute from the config map.

0 commit comments

Comments
 (0)