Skip to content

Commit 7fb7eb9

Browse files
authored
Merge pull request #295824 from nzthiago/nzthiagopatch1
Adding note about missing timezone support for Flex Consumption
2 parents ca5dff1 + b4e4bae commit 7fb7eb9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

articles/azure-functions/flex-consumption-plan.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ Keep these other considerations in mind when using Flex Consumption plan:
142142
+ **Diagnostic settings**: Diagnostic settings aren't currently supported.
143143
+ **Certificates**: Loading certificates with the WEBSITE_LOAD_CERTIFICATES app setting, managed certificates, app service certificates, and other platform certificate-based features are currently not supported.
144144
+ **Key Vault References**: Key Vault references in app settings don't work when Key Vault is network access restricted, even if the function app has Virtual Network integration. The current workaround is to directly reference the Key Vault in code and read the required secrets.
145+
+ **Timezones**: `WEBSITE_TIME_ZONE` and `TZ` app settings are not currently supported when running on Flex Consumption plan.
145146

146147
## Related articles
147148

includes/functions-timezone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The value of this setting depends on the operating system and plan on which your
1616
| **Linux** |Premium<br/>Dedicated |Set the value to the name of the desired time zone as shown in the [tz database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). |
1717

1818
> [!NOTE]
19-
> `WEBSITE_TIME_ZONE` and `TZ` are not currently supported when running on Linux in a Consumption plan. In this case, setting `WEBSITE_TIME_ZONE` or `TZ` can create SSL-related issues and cause metrics to stop working for your app.
19+
> `WEBSITE_TIME_ZONE` and `TZ` are not currently supported when running on Linux in a Consumption or Flex Consumption plan. In this case, setting `WEBSITE_TIME_ZONE` or `TZ` can create SSL-related issues and cause metrics to stop working for your app.
2020
2121
For example, Eastern Time in the US (represented by `Eastern Standard Time` (Windows) or `America/New_York` (Linux)) currently uses UTC-05:00 during standard time and UTC-04:00 during daylight time. To have a timer trigger fire at 10:00 AM Eastern Time every day, create an app setting for your function app named `WEBSITE_TIME_ZONE`, set the value to `Eastern Standard Time` (Windows) or `America/New_York` (Linux), and then use the following NCRONTAB expression:
2222

0 commit comments

Comments
 (0)