Skip to content

Commit

Permalink
chore: image name
Browse files Browse the repository at this point in the history
change to clearer base image name
  • Loading branch information
jlangy committed Oct 30, 2024
1 parent 7385a2c commit 13e071e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform-ecs/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resource "aws_ecs_task_definition" "loki_write" {

container_definitions = jsonencode([{
name = "loki-write"
image = "ghcr.io/bcgov/sso-grafana:${var.loki_tag}"
image = "ghcr.io/bcgov/sso-loki:${var.loki_tag}"
essential = true
memory = var.loki_write_memory
cpu = var.loki_write_cpu
Expand Down Expand Up @@ -113,7 +113,7 @@ resource "aws_ecs_task_definition" "loki_read" {

container_definitions = jsonencode([{
name = "loki-read"
image = "ghcr.io/bcgov/sso-grafana:${var.loki_tag}"
image = "ghcr.io/bcgov/sso-loki:${var.loki_tag}"
essential = true
memory = var.loki_read_memory
cpu = var.loki_read_cpu
Expand Down

0 comments on commit 13e071e

Please sign in to comment.