Skip to content

Commit b341503

Browse files
committed
Merge branch 'main' of https://github.com/PerfectThymeTech/AzureFunctionPython into marvinbuss/bugfix_header_auth
2 parents 603ee0f + ba7a9c7 commit b341503

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/_containerTemplate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
# Install cosign
5656
- name: Install cosign
57-
uses: sigstore/cosign-installer@v3.3.0
57+
uses: sigstore/cosign-installer@v3.4.0
5858
id: install_cosign
5959
if: github.event_name == 'release'
6060
with:
@@ -83,7 +83,7 @@ jobs:
8383
# Extract Metadata (tags, labels)
8484
- name: Extract Metadata
8585
id: metadata
86-
uses: docker/metadata-action@v5.5.0
86+
uses: docker/metadata-action@v5.5.1
8787
with:
8888
context: workflow
8989
images: |

code/function/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# azure-identity~=1.15.0
66
azure-functions~=1.18.0
7-
fastapi~=0.109.0
7+
fastapi~=0.109.1
88
pydantic-settings~=2.1.0
99
httpx~=0.26.0
1010
azure-monitor-opentelemetry-exporter==1.0.0b20

code/infra/function.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ resource "azapi_resource" "function" {
101101
name = "AZURE_TRACING_ENABLED"
102102
value = "true"
103103
},
104+
{
105+
name = "OTEL_PYTHON_REQUESTS_EXCLUDED_URLS"
106+
value = ".*.in.applicationinsights.azure.com/.*"
107+
},
104108
{
105109
name = "AZURE_FUNCTIONS_ENVIRONMENT"
106110
value = "Production"

0 commit comments

Comments
 (0)