Skip to content

Commit 88fc6f8

Browse files
authored
Merge branch 'main' into tls
Signed-off-by: Anthony Shaw <[email protected]>
2 parents ec61955 + b42fed0 commit 88fc6f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+267
-1621
lines changed

.github/workflows/bicep-audit.yml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
branches:
55
- main
66
paths:
7-
- "infra/**"
7+
- "**/*.bicep"
88
pull_request:
99
branches:
1010
- main
1111
paths:
12-
- "infra/**"
12+
- "**/*.bicep"
1313
workflow_dispatch:
1414

1515
jobs:
@@ -21,15 +21,23 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

24-
- name: Run Microsoft Security DevOps Analysis
25-
uses: microsoft/security-devops-action@preview
26-
id: msdo
27-
continue-on-error: true
24+
- name: Run PSRule analysis
25+
uses: microsoft/[email protected]
2826
with:
29-
tools: templateanalyzer
27+
modules: PSRule.Rules.Azure
28+
baseline: Azure.Pillar.Security
29+
inputPath: infra/*.test.bicep
30+
outputFormat: Sarif
31+
outputPath: reports/ps-rule-results.sarif
32+
summary: true
33+
continue-on-error: true
34+
35+
env:
36+
PSRULE_CONFIGURATION_AZURE_BICEP_FILE_EXPANSION: 'true'
37+
PSRULE_CONFIGURATION_AZURE_BICEP_FILE_EXPANSION_TIMEOUT: '30'
3038

31-
- name: Upload alerts to Security tab
39+
- name: Upload results to security tab
3240
uses: github/codeql-action/upload-sarif@v3
3341
if: github.repository_owner == 'Azure-Samples'
3442
with:
35-
sarif_file: ${{ steps.msdo.outputs.sarifFile }}
43+
sarif_file: reports/ps-rule-results.sarif

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ products:
99
- azure
1010
- azure-container-apps
1111
- azure-service-bus
12-
- dapr
1312
urlFragment: pubsub-dapr-nodejs-servicebus
1413
name: Microservice communication using pubsub (async)(Node.js)
1514
description: Create a publisher microservice and a subscriber microservice with Node.js to demonstrate how Dapr enables a publish-subcribe pattern. The publisher will generate messages of a specific topic, while subscribers will listen for messages of specific topics.

infra/abbreviations.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"analysisServicesServers": "as",
33
"apiManagementService": "apim-",
4-
"appConfigurationConfigurationStores": "appcs-",
4+
"appConfigurationStores": "appcs-",
55
"appManagedEnvironments": "cae-",
66
"appContainerApps": "ca-",
77
"authorizationPolicyDefinitions": "policy-",
@@ -14,6 +14,7 @@
1414
"cognitiveServicesAccounts": "cog-",
1515
"cognitiveServicesFormRecognizer": "cog-fr-",
1616
"cognitiveServicesTextAnalytics": "cog-ta-",
17+
"cognitiveServicesSpeech": "cog-sp-",
1718
"computeAvailabilitySets": "avail-",
1819
"computeCloudServices": "cld-",
1920
"computeDiskEncryptionSets": "des",
@@ -55,6 +56,7 @@
5556
"kubernetesConnectedClusters": "arck",
5657
"kustoClusters": "dec",
5758
"kustoClustersDatabases": "dedb",
59+
"loadTesting": "lt-",
5860
"logicIntegrationAccounts": "ia-",
5961
"logicWorkflows": "logic-",
6062
"machineLearningServicesWorkspaces": "mlw-",
@@ -132,4 +134,4 @@
132134
"webSitesAppServiceEnvironment": "ase-",
133135
"webSitesFunctions": "func-",
134136
"webStaticSites": "stapp-"
135-
}
137+
}

infra/core/ai/cognitiveservices.bicep

Lines changed: 0 additions & 38 deletions
This file was deleted.

infra/core/database/cosmos/cosmos-account.bicep

Lines changed: 0 additions & 48 deletions
This file was deleted.

infra/core/database/cosmos/mongo/cosmos-mongo-account.bicep

Lines changed: 0 additions & 22 deletions
This file was deleted.

infra/core/database/cosmos/mongo/cosmos-mongo-db.bicep

Lines changed: 0 additions & 46 deletions
This file was deleted.

infra/core/database/cosmos/sql/cosmos-sql-account.bicep

Lines changed: 0 additions & 21 deletions
This file was deleted.

infra/core/database/cosmos/sql/cosmos-sql-db.bicep

Lines changed: 0 additions & 73 deletions
This file was deleted.

infra/core/database/cosmos/sql/cosmos-sql-role-assign.bicep

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)