Skip to content

Commit

Permalink
ARM template and parameters deployed on 4-24-2024 21:27:14, based on …
Browse files Browse the repository at this point in the history
…the collaboration branch's commit ID: 5e09c95
  • Loading branch information
marvinbuss committed Apr 24, 2024
1 parent b488780 commit 600def2
Show file tree
Hide file tree
Showing 6 changed files with 325 additions and 0 deletions.
103 changes: 103 additions & 0 deletions sc4-dev-df001/ARMTemplateForFactory.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"factoryName": {
"type": "string",
"metadata": "Data Factory name",
"defaultValue": "sc4-dev-df001"
},
"AzureDataExplorer_properties_typeProperties_endpoint": {
"type": "string",
"defaultValue": "https://sc4-dev-kusto001.germanywestcentral.kusto.windows.net"
},
"AzureDataExplorer_properties_typeProperties_database": {
"type": "string",
"defaultValue": "@linkedService().databaseName"
},
"AzureDataLakeStorage_properties_typeProperties_url": {
"type": "string",
"defaultValue": "https://sc4devstg001.dfs.core.windows.net/"
},
"AzureKeyVault_properties_typeProperties_baseUrl": {
"type": "string",
"defaultValue": "https://sc4-dev-vault001.vault.azure.net/"
}
},
"variables": {
"factoryId": "[concat('Microsoft.DataFactory/factories/', parameters('factoryName'))]"
},
"resources": [
{
"name": "[concat(parameters('factoryName'), '/AzureDataExplorer')]",
"type": "Microsoft.DataFactory/factories/linkedServices",
"apiVersion": "2018-06-01",
"properties": {
"description": "Azure Data Explorer",
"parameters": {
"databaseName": {
"type": "string",
"defaultValue": "operationaldb"
}
},
"annotations": [],
"type": "AzureDataExplorer",
"typeProperties": {
"endpoint": "[parameters('AzureDataExplorer_properties_typeProperties_endpoint')]",
"database": "[parameters('AzureDataExplorer_properties_typeProperties_database')]"
}
},
"dependsOn": []
},
{
"name": "[concat(parameters('factoryName'), '/AzureDataLakeStorage')]",
"type": "Microsoft.DataFactory/factories/linkedServices",
"apiVersion": "2018-06-01",
"properties": {
"description": "Azure Data Lake Storage",
"annotations": [],
"type": "AzureBlobFS",
"typeProperties": {
"url": "[parameters('AzureDataLakeStorage_properties_typeProperties_url')]"
}
},
"dependsOn": []
},
{
"name": "[concat(parameters('factoryName'), '/AzureKeyVault')]",
"type": "Microsoft.DataFactory/factories/linkedServices",
"apiVersion": "2018-06-01",
"properties": {
"description": "Azure Key Vault",
"annotations": [],
"type": "AzureKeyVault",
"typeProperties": {
"baseUrl": "[parameters('AzureKeyVault_properties_typeProperties_baseUrl')]"
}
},
"dependsOn": []
},
{
"name": "[concat(parameters('factoryName'), '/IntegrationRuntime001')]",
"type": "Microsoft.DataFactory/factories/integrationRuntimes",
"apiVersion": "2018-06-01",
"properties": {
"type": "Managed",
"description": "Integration Runtime 001",
"typeProperties": {
"computeProperties": {
"location": "AutoResolve",
"dataFlowProperties": {
"computeType": "General",
"coreCount": 8,
"timeToLive": 10,
"cleanup": false,
"customProperties": []
}
}
}
},
"dependsOn": []
}
]
}
21 changes: 21 additions & 0 deletions sc4-dev-df001/ARMTemplateParametersForFactory.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"factoryName": {
"value": "sc4-dev-df001"
},
"AzureDataExplorer_properties_typeProperties_endpoint": {
"value": "https://sc4-dev-kusto001.germanywestcentral.kusto.windows.net"
},
"AzureDataExplorer_properties_typeProperties_database": {
"value": "@linkedService().databaseName"
},
"AzureDataLakeStorage_properties_typeProperties_url": {
"value": "https://sc4devstg001.dfs.core.windows.net/"
},
"AzureKeyVault_properties_typeProperties_baseUrl": {
"value": "https://sc4-dev-vault001.vault.azure.net/"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
27 changes: 27 additions & 0 deletions sc4-dev-df001/linkedTemplates/ArmTemplateParameters_master.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"factoryName": {
"value": "sc4-dev-df001"
},
"AzureDataExplorer_properties_typeProperties_endpoint": {
"value": "https://sc4-dev-kusto001.germanywestcentral.kusto.windows.net"
},
"AzureDataExplorer_properties_typeProperties_database": {
"value": "@linkedService().databaseName"
},
"AzureDataLakeStorage_properties_typeProperties_url": {
"value": "https://sc4devstg001.dfs.core.windows.net/"
},
"AzureKeyVault_properties_typeProperties_baseUrl": {
"value": "https://sc4-dev-vault001.vault.azure.net/"
},
"containerUri": {
"value": ""
},
"containerSasToken": {
"value": ""
}
}
}
103 changes: 103 additions & 0 deletions sc4-dev-df001/linkedTemplates/ArmTemplate_0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"factoryName": {
"type": "string",
"metadata": "Data Factory name",
"defaultValue": "sc4-dev-df001"
},
"AzureDataExplorer_properties_typeProperties_endpoint": {
"type": "string",
"defaultValue": "https://sc4-dev-kusto001.germanywestcentral.kusto.windows.net"
},
"AzureDataExplorer_properties_typeProperties_database": {
"type": "string",
"defaultValue": "@linkedService().databaseName"
},
"AzureDataLakeStorage_properties_typeProperties_url": {
"type": "string",
"defaultValue": "https://sc4devstg001.dfs.core.windows.net/"
},
"AzureKeyVault_properties_typeProperties_baseUrl": {
"type": "string",
"defaultValue": "https://sc4-dev-vault001.vault.azure.net/"
}
},
"variables": {
"factoryId": "[concat('Microsoft.DataFactory/factories/', parameters('factoryName'))]"
},
"resources": [
{
"name": "[concat(parameters('factoryName'), '/AzureDataExplorer')]",
"type": "Microsoft.DataFactory/factories/linkedServices",
"apiVersion": "2018-06-01",
"properties": {
"description": "Azure Data Explorer",
"parameters": {
"databaseName": {
"type": "string",
"defaultValue": "operationaldb"
}
},
"annotations": [],
"type": "AzureDataExplorer",
"typeProperties": {
"endpoint": "[parameters('AzureDataExplorer_properties_typeProperties_endpoint')]",
"database": "[parameters('AzureDataExplorer_properties_typeProperties_database')]"
}
},
"dependsOn": []
},
{
"name": "[concat(parameters('factoryName'), '/AzureDataLakeStorage')]",
"type": "Microsoft.DataFactory/factories/linkedServices",
"apiVersion": "2018-06-01",
"properties": {
"description": "Azure Data Lake Storage",
"annotations": [],
"type": "AzureBlobFS",
"typeProperties": {
"url": "[parameters('AzureDataLakeStorage_properties_typeProperties_url')]"
}
},
"dependsOn": []
},
{
"name": "[concat(parameters('factoryName'), '/AzureKeyVault')]",
"type": "Microsoft.DataFactory/factories/linkedServices",
"apiVersion": "2018-06-01",
"properties": {
"description": "Azure Key Vault",
"annotations": [],
"type": "AzureKeyVault",
"typeProperties": {
"baseUrl": "[parameters('AzureKeyVault_properties_typeProperties_baseUrl')]"
}
},
"dependsOn": []
},
{
"name": "[concat(parameters('factoryName'), '/IntegrationRuntime001')]",
"type": "Microsoft.DataFactory/factories/integrationRuntimes",
"apiVersion": "2018-06-01",
"properties": {
"type": "Managed",
"description": "Integration Runtime 001",
"typeProperties": {
"computeProperties": {
"location": "AutoResolve",
"dataFlowProperties": {
"computeType": "General",
"coreCount": 8,
"timeToLive": 10,
"cleanup": false,
"customProperties": []
}
}
}
},
"dependsOn": []
}
]
}
70 changes: 70 additions & 0 deletions sc4-dev-df001/linkedTemplates/ArmTemplate_master.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"factoryName": {
"type": "string",
"metadata": "Data Factory name",
"defaultValue": "sc4-dev-df001"
},
"AzureDataExplorer_properties_typeProperties_endpoint": {
"type": "string",
"defaultValue": "https://sc4-dev-kusto001.germanywestcentral.kusto.windows.net"
},
"AzureDataExplorer_properties_typeProperties_database": {
"type": "string",
"defaultValue": "@linkedService().databaseName"
},
"AzureDataLakeStorage_properties_typeProperties_url": {
"type": "string",
"defaultValue": "https://sc4devstg001.dfs.core.windows.net/"
},
"AzureKeyVault_properties_typeProperties_baseUrl": {
"type": "string",
"defaultValue": "https://sc4-dev-vault001.vault.azure.net/"
},
"containerUri": {
"type": "string",
"metadata": "URI to storage account containing linked ARM templates"
},
"containerSasToken": {
"type": "string",
"metadata": "Sas token to storage account containing linked ARM templates"
}
},
"variables": {
"factoryId": "[concat('Microsoft.DataFactory/factories/', parameters('factoryName'))]"
},
"resources": [
{
"name": "sc4-dev-df001_ArmTemplate_0",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2018-02-01",
"properties": {
"mode": "incremental",
"templateLink": {
"uri": "[concat(parameters('containerUri'), '/ArmTemplate_0.json', parameters('containerSasToken'))]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"factoryName": {
"value": "[parameters('factoryName')]"
},
"AzureDataExplorer_properties_typeProperties_endpoint": {
"value": "[parameters('AzureDataExplorer_properties_typeProperties_endpoint')]"
},
"AzureDataExplorer_properties_typeProperties_database": {
"value": "[parameters('AzureDataExplorer_properties_typeProperties_database')]"
},
"AzureDataLakeStorage_properties_typeProperties_url": {
"value": "[parameters('AzureDataLakeStorage_properties_typeProperties_url')]"
},
"AzureKeyVault_properties_typeProperties_baseUrl": {
"value": "[parameters('AzureKeyVault_properties_typeProperties_baseUrl')]"
}
}
},
"dependsOn": []
}
]
}

0 comments on commit 600def2

Please sign in to comment.