Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ID-1242 Azure Private Container Registry Resource #1412

Merged
Merged
Changes from all commits
Commits
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
61 changes: 61 additions & 0 deletions src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1604,6 +1604,67 @@ resourceTypes = {
reuseIds = true
}

private_azure_container_registry = {
actionPatterns = {
delete = {
description = "Delete this private acr"
}
read_policies = {
description = "view all policies and policy details for this private acr"
}
identify = {
description = "use the identity that has access to this private acr"
}
"share_policy::admin" = {
description = "change the membership of the admin policy for this private acr"
}
"share_policy::user" = {
description = "change the membership of the user policy for this private acr"
}
}
ownerRoleName = "admin"
roles = {
admin = {
roleActions = ["delete", "read_policies", "use", "share_policy::admin", "share_policy::user", "identify"]
}
user = {
roleActions = ["identify"]
}
}
allowLeaving = false
reuseIds = true
}

private_azure_storage_account = {
actionPatterns = {
delete = {
description = "Delete this private azure storage account"
}
read_policies = {
description = "view all policies and policy details for this private azure storage account"
}
identify = {
description = "use the identity that has access to this private azure storage account"
}
"share_policy::admin" = {
description = "change the membership of the admin policy for this private azure storage account"
}
"share_policy::user" = {
description = "change the membership of the user policy for this private azure storage account"
}
}
ownerRoleName = "admin"
roles = {
admin = {
roleActions = ["delete", "read_policies", "use", "share_policy::admin", "share_policy::user", "identify"]
}
user = {
roleActions = ["identify"]
}
}
allowLeaving = false
reuseIds = true
}
}


Expand Down
Loading