Skip to content

Commit 35ba5ca

Browse files
authored
Merge pull request #154 from PerfectThymeTech/marvinbuss/premium_plan
Switch to Premium Function Plan
2 parents 72f399a + a796559 commit 35ba5ca

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/terraform.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
paths:
77
- "**.tf"
88
- "code/infra/**"
9+
- "config/**"
910
- ".github/workflows/terraform.yml"
1011

1112
pull_request:
@@ -14,6 +15,7 @@ on:
1415
paths:
1516
- "**.tf"
1617
- "code/infra/**"
18+
- "config/**"
1719
- ".github/workflows/terraform.yml"
1820

1921
jobs:

code/infra/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ variable "function_sku" {
6565
nullable = false
6666
default = "P0v3"
6767
validation {
68-
condition = contains(["F1", "B1", "B2", "B3", "S1", "S2", "S3", "P0v3", "P1v3", "P2v3", "P3v3", "P1mv3", "P2mv3", "P3mv3", "P4mv3", "P5mv3"], var.function_sku)
68+
condition = contains(["F1", "B1", "B2", "B3", "S1", "S2", "S3", "P0v3", "P1v3", "P2v3", "P3v3", "P1mv3", "P2mv3", "P3mv3", "P4mv3", "P5mv3", "EP1", "EP2", "EP3"], var.function_sku)
6969
error_message = "Please specify a valid sku name."
7070
}
7171
}

config/PerfectThymeTech/vars.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags = {}
77
# Function variables
88
function_container_registry_url = "https://ghcr.io"
99
function_container_image = "ghcr.io/perfectthymetech/azurefunctionpython:main"
10-
function_sku = "P0v3"
10+
function_sku = "EP1"
1111
function_sku_cpus = 1
1212
function_health_path = "/v1/health/heartbeat"
1313

0 commit comments

Comments
 (0)