-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM template and parameters deployed on 4-24-2024 21:27:14, based on …
…the collaboration branch's commit ID: 5e09c95
- Loading branch information
1 parent
b488780
commit 600def2
Showing
6 changed files
with
325 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
sc4-dev-df001/globalParameters/sc4-dev-df001_GlobalParameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
27 changes: 27 additions & 0 deletions
27
sc4-dev-df001/linkedTemplates/ArmTemplateParameters_master.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": "" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": [] | ||
} | ||
] | ||
} |