Skip to content

Commit e797ff8

Browse files
authored
Disabled ACR admin user by default (#2253)
With the change from #2245 we are now able to disable the ACR admin user by default. This is a security best practice. More information available in azure docs
1 parent d1cbe95 commit e797ff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/common/infra/bicep/core/host/container-registry.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ param name string
22
param location string = resourceGroup().location
33
param tags object = {}
44

5-
param adminUserEnabled bool = true
5+
param adminUserEnabled bool = false
66
param anonymousPullEnabled bool = false
77
param dataEndpointEnabled bool = false
88
param encryption object = {

0 commit comments

Comments
 (0)