From 2eb2af65fec9bec3fde9b4c9445e7eac5519d949 Mon Sep 17 00:00:00 2001 From: v-tebe <81411467+v-tebe@users.noreply.github.com> Date: Thu, 3 Jun 2021 12:24:36 +0530 Subject: [PATCH] Delete linked_template.json --- linked_template.json | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 linked_template.json diff --git a/linked_template.json b/linked_template.json deleted file mode 100644 index 91f28b4..0000000 --- a/linked_template.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "assignmentType": { - "type": "string", - "allowedValues": [ - "AcrPull" - ] - }, - "resourceName": { - "type": "string" - }, - "scope": { - "type": "string" - } - }, - "variables": { - "AcrPull": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/', '7f951dda-4ed3-4680-a7ca-43fe172d538d')]" - }, - "resources": [ - { - "type": "Microsoft.Authorization/roleAssignments/providers/roleAssignments", - "apiVersion": "2019-05-01", - "name": "[concat(parameters('resourceName'), '/Microsoft.Authorization/', guid(uniqueString('ee70552c-f7b5-480d-9800-e5bb529a004a')))]", - "scope": "[parameters('scope')]", - "properties": { - "roleDefinitionId": "[variables(parameters('assignmentType'))]", - "principalId": "ee70552c-f7b5-480d-9800-e5bb529a004a", - "principalType": "ServicePrincipal" - } - } - ] -}