Skip to content

Commit

Permalink
temporarily fix ilmo to point to newest version.
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm authored Jul 26, 2024
1 parent d9d43c1 commit 649aaa4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions modules/ilmo/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ terraform {
}

locals {
db_name = "${var.env_name}_ilmo_db"
fqdn = "${var.subdomain}.${var.root_zone_name}"
db_name = "${var.env_name}_ilmo_db"
fqdn = "${var.subdomain}.${var.root_zone_name}"
image_tag = "2.0.0-alpha19"
}

resource "azurerm_postgresql_flexible_server_database" "ilmo_db_new" {
Expand All @@ -33,7 +34,7 @@ resource "azurerm_linux_web_app" "ilmo_backend" {

application_stack {
docker_registry_url = "https://ghcr.io"
docker_image_name = "tietokilta/ilmomasiina:latest"
docker_image_name = "tietokilta/ilmomasiina:${local.image_tag}"
}
}

Expand Down

0 comments on commit 649aaa4

Please sign in to comment.