mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-27 23:01:20 +00:00
Merge pull request #117 from bartvdbraak/updates
Updates to packages and API versions
This commit is contained in:
commit
45f78e67a2
5 changed files with 197 additions and 212 deletions
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
|
@ -56,9 +56,10 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: azure/login@v2
|
- uses: azure/login@v2
|
||||||
with:
|
with:
|
||||||
client-id: ${{ secrets.AZURE_CLIENT_ID }}
|
client-id: ${{ secrets.AZURE_CLIENT_ID_BICEP }}
|
||||||
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
||||||
|
|
||||||
- name: Deploy Bicep template
|
- name: Deploy Bicep template
|
||||||
uses: azure/arm-deploy@v2
|
uses: azure/arm-deploy@v2
|
||||||
with:
|
with:
|
||||||
|
|
400
Cargo.lock
generated
400
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -31,7 +31,7 @@ var nameFormat = '${name.tenantId}-${name.projectId}-${environment}-${name.regio
|
||||||
Resource Group
|
Resource Group
|
||||||
*/
|
*/
|
||||||
|
|
||||||
resource ResourceGroup 'Microsoft.Resources/resourceGroups@2023-07-01' = {
|
resource ResourceGroup 'Microsoft.Resources/resourceGroups@2024-03-01' = {
|
||||||
name: format(nameFormat, 'RG', 1)
|
name: format(nameFormat, 'RG', 1)
|
||||||
location: location
|
location: location
|
||||||
tags: tags
|
tags: tags
|
||||||
|
|
|
@ -16,7 +16,7 @@ var accessPolicies = [for identity in identities: {
|
||||||
Log Analytics Workspace (existing)
|
Log Analytics Workspace (existing)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
resource _logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2022-10-01' existing = {
|
resource _logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2023-09-01' existing = {
|
||||||
name: format(nameFormat, 'LAW', 1)
|
name: format(nameFormat, 'LAW', 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ param tags object
|
||||||
Log Analytics Workspace
|
Log Analytics Workspace
|
||||||
*/
|
*/
|
||||||
|
|
||||||
resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2022-10-01' = {
|
resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2023-09-01' = {
|
||||||
name: format(nameFormat, 'LAW', 1)
|
name: format(nameFormat, 'LAW', 1)
|
||||||
location: location
|
location: location
|
||||||
tags: tags
|
tags: tags
|
||||||
|
|
Loading…
Reference in a new issue