Skip to content

Commit

Permalink
ID-1242 Azure Private Container Registry Resource (#1412)
Browse files Browse the repository at this point in the history
* ID-1242 Azure Private Container Registry Resource

* add azure private storage account
  • Loading branch information
tlangs authored May 1, 2024
1 parent bb18715 commit 09e280e
Showing 1 changed file with 61 additions and 0 deletions.
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

0 comments on commit 09e280e

Please sign in to comment.