Skip to content

Commit

Permalink
Update container_apps.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
benchiverton committed Jul 2, 2024
1 parent 39cc4d1 commit 79ef45b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/instance/container_apps.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "azurerm_container_app" "api" {

template {
container {
name = "onlinestore-api"
name = "${lower(var.environment)}-onlinestore-api"
image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest"
cpu = 0.25
memory = "0.5Gi"
Expand Down Expand Up @@ -46,7 +46,7 @@ resource "azurerm_container_app" "website" {

template {
container {
name = "onlinestore-website"
name = "${lower(var.environment)}-onlinestore-website"
image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest"
cpu = 0.25
memory = "0.5Gi"
Expand Down Expand Up @@ -81,7 +81,7 @@ resource "azurerm_container_app" "monitoring" {

template {
container {
name = "aspire-dashboard"
name = "${lower(var.environment)}-aspire-dashboard"
image = "onlinestorecontainerregistry.azurecr.io/dotnet/aspire-dashboard:8.0.0"
cpu = 0.25
memory = "0.5Gi"
Expand Down

0 comments on commit 79ef45b

Please sign in to comment.