Skip to content

Commit

Permalink
modified: .github/workflows/build_and_push_images.yaml
Browse files Browse the repository at this point in the history
	modified:   terraform/aca.tf
  • Loading branch information
vrsorheim committed Jul 5, 2024
1 parent 2dc207a commit 57ea5a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build_and_push_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- deploy-infra-terraformv2
paths-ignore:
- 'terraform/**'

permissions:
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions terraform/aca.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ resource "azurerm_container_app" "frontend" {
template {
container {
name = "frontend"
image = "${data.azurerm_container_registry.acr.login_server}/client:latest"
image = "${data.azurerm_container_registry.acr.login_server}/client:2dc207a559bf128e18ef2803bccf6996c9677e2c"
cpu = 0.25
memory = "0.5Gi"
env {
Expand Down Expand Up @@ -110,7 +110,7 @@ resource "azurerm_container_app" "backend" {
template {
container {
name = "backend"
image = "${data.azurerm_container_registry.acr.login_server}/server:latest"
image = "${data.azurerm_container_registry.acr.login_server}/server:2dc207a559bf128e18ef2803bccf6996c9677e2c"
cpu = 0.25
memory = "0.5Gi"
env {
Expand Down

0 comments on commit 57ea5a1

Please sign in to comment.