-
Notifications
You must be signed in to change notification settings - Fork 454
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Align locks accross all modules #197
Conversation
resource serviceBusNamespaceQueue_lock 'Microsoft.Authorization/locks@2016-09-01' = if (lockForDeletion) { | ||
name: '${split(serviceBusNamespaceQueue.name, '/')[1]}-doNotDelete' | ||
resource serviceBusNamespaceQueue_lock 'Microsoft.Authorization/locks@2016-09-01' = if (lock != 'NotSpecified') { | ||
name: '${serviceBusNamespaceQueue.name}-${lock}-lock' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure about the naming here. If the queue namespace would refer to full name or resource specific name
- '${split(serviceBusNamespaceQueue.name, '/')[1]}-doNotDelete'
+ '${serviceBusNamespaceQueue.name}-${lock}-lock'
resource managedInstanceDatabase_lock 'Microsoft.Authorization/locks@2016-09-01' = if (lockForDeletion) { | ||
name: '${split(managedInstanceDatabase.name, '/')[1]}-doNotDelete' | ||
resource managedInstanceDatabase_lock 'Microsoft.Authorization/locks@2016-09-01' = if (lock != 'NotSpecified') { | ||
name: '${managedInstanceDatabase.name}-${lock}-lock' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure about the naming here. If the managedInstanceDatabase would refer to full name or resource specific name
- '${split(managedInstanceDatabase.name, '/')[1]}-doNotDelete'
+ '${managedInstanceDatabase.name}-${lock}-lock'
Binary?
Updated files, missing counterpart:
|
Change
Type of Change
Please delete options that are not relevant.
Checklist