Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
8b28194
Prepared change to PE interface
AlexanderSehr Feb 14, 2025
4fddff4
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Feb 21, 2025
1adef4a
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 1, 2025
ea51b51
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 1, 2025
1e025f7
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 7, 2025
338ea69
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 7, 2025
8c835eb
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 12, 2025
6477aec
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 22, 2025
2978597
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 27, 2025
c8c7409
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 13, 2025
d79dcc5
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 13, 2025
dfb02d1
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 18, 2025
9a10a6f
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 20, 2025
43a3b9c
Update to latest
AlexanderSehr May 20, 2025
48b4b48
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Jun 20, 2025
7626a14
Update to latest
AlexanderSehr Jun 20, 2025
e48dd50
Update to latest
AlexanderSehr Jun 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
lock: 'CanNotDelete'
lock: {
kind: 'CanNotDelete'
name: 'myCustomLockName'
notes: 'This is a custom lock note.'
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

// ============== //
// Parameters //
// ============== //
Expand All @@ -15,7 +14,9 @@ resource >singularMainResourceType<_lock 'Microsoft.Authorization/locks@2020-05-
name: lock.?name ?? 'lock-${name}'
properties: {
level: lock.?kind ?? ''
notes: lock.?kind == 'CanNotDelete' ? 'Cannot delete resource or child resources.' : 'Cannot delete or modify the resource or child resources.'
notes: lock.?notes ?? (lock.?kind == 'CanNotDelete'
? 'Cannot delete resource or child resources.'
: 'Cannot delete or modify the resource or child resources.')
}
scope: >singularMainResourceType<
}