Skip to content

Commit caa4caa

Browse files
committed
Update terraform providers and poetry version
1 parent de12aaa commit caa4caa

File tree

7 files changed

+66
-67
lines changed

7 files changed

+66
-67
lines changed

.terraform.lock.hcl

Lines changed: 16 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/Dockerfile-dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM python:3.12-alpine3.19
44
ENV SHELL=sh
55
ENV PATH="$PATH:/root/.local/bin"
66
RUN apk add 'pipx=~1.4'
7-
RUN pipx install poetry==2.1
7+
RUN pipx install poetry==2.2
88

99
WORKDIR /api/
1010
COPY . /api/

infra/.terraform.lock.hcl

Lines changed: 44 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infra/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
azurerm = {
44
source = "hashicorp/azurerm"
5-
version = "~> 4.18.0"
5+
version = "~> 4.51.0"
66
}
77
}
88
required_version = ">= 1.1.0"

infra/modules/api/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
docker = {
55
source = "kreuzwerker/docker"
6-
version = "3.0.2"
6+
version = "3.6.2"
77
}
88
}
99
}

infra/modules/functions/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ terraform {
1111
locals {
1212
local_app_settings = {
1313
SCM_DO_BUILD_DURING_DEPLOYMENT = true
14+
ENABLE_ORYX_BUILD = true
1415
}
1516
app_settings = merge(local.local_app_settings, var.app_envs)
1617
}
@@ -20,7 +21,7 @@ resource "azurerm_service_plan" "functions_sp" {
2021
resource_group_name = var.rg_name
2122
location = var.rg_location
2223
os_type = "Linux"
23-
sku_name = "B2"
24+
sku_name = "S1"
2425
tags = {
2526
"stage" = var.stage
2627
}

main-dev.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
docker = {
44
source = "kreuzwerker/docker"
5-
version = "~> 3.0.1"
5+
version = "~> 3.6.2"
66
}
77
}
88
}

0 commit comments

Comments
 (0)