Skip to content

Commit

Permalink
move away from deprecated docker_image and docker_tag
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed Nov 13, 2023
1 parent d997a86 commit 3c35795
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions modules/cms/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ resource "azurerm_linux_web_app" "tikweb_cms" {
always_on = true

application_stack {
docker_image = "ghcr.io/tietokilta/strapi-cms"
docker_image_tag = "latest"
docker_registry_url = "https://ghcr.io"
docker_image_name = "tietokilta/strapi-cms:latest"
}
}

Expand Down
4 changes: 2 additions & 2 deletions modules/ilmo/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ resource "azurerm_linux_web_app" "ilmo_backend" {
always_on = true

application_stack {
docker_image = "ghcr.io/tietokilta/ilmomasiina"
docker_image_tag = "latest"
docker_registry_url = "https://ghcr.io"
docker_image_name = "tietokilta/ilmomasiina:latest"
}
}

Expand Down
4 changes: 2 additions & 2 deletions modules/recruiting/ghost/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ resource "azurerm_linux_web_app" "tikjob_ghost" {
always_on = true

application_stack {
docker_image = "docker.io/library/ghost"
docker_image_tag = "5.38-alpine"
docker_registry_url = "https://docker.io"
docker_image_name = "ghost:5.38-alpine"
}
}

Expand Down
4 changes: 2 additions & 2 deletions modules/tenttiarkisto/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ resource "azurerm_linux_web_app" "tenttiarkisto" {
always_on = true

application_stack {
docker_image = "ghcr.io/tietokilta/tenttiarkisto"
docker_image_tag = "latest"
docker_registry_url = "https://ghcr.io"
docker_image_name = "tietokilta/tenttiarkisto:latest"
}
}

Expand Down

0 comments on commit 3c35795

Please sign in to comment.