Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adampaternostro/azure-big-data-dev-ops
A set of Azure ARM templates for big data architectures in Azure
https://github.com/adampaternostro/azure-big-data-dev-ops
azure azure-arm azure-arm-template azure-devops
Last synced: 4 days ago
JSON representation
A set of Azure ARM templates for big data architectures in Azure
- Host: GitHub
- URL: https://github.com/adampaternostro/azure-big-data-dev-ops
- Owner: AdamPaternostro
- Created: 2019-10-14T22:11:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-31T15:49:41.000Z (over 5 years ago)
- Last Synced: 2024-12-03T23:12:58.231Z (2 months ago)
- Topics: azure, azure-arm, azure-arm-template, azure-devops
- Homepage:
- Size: 156 KB
- Stars: 1
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure-Big-Data-Dev-Ops
![alt tag](https://raw.githubusercontent.com/adampaternostro/Azure-Big-Data-Dev-Ops/master/Architecture.png)
```
# Login
az login# Script parameters
subscriptionId=<>
resourceGroup="Azure-Big-Data-Dev-Ops"
location="eastus"
today=`date +%Y-%m-%d-%H-%M-%S`
deploymentName="MyDeployment-$today"# Select Subscription
az account set -s $subscriptionId# Create resource group
az group create \
--name $resourceGroup \
--location $location# Deploy the ARM template
az group deployment create \
--name $deploymentName \
--resource-group $resourceGroup \
--template-file azuredeploy.json \
--parameters @azuredeploy.parameters.json \
--mode Incremental# Deploy Security Center at the Subscription Level (not resource group)
deploymentName="MyDeployment-SecurityCenter-$today"# Deploy Security Center
az deployment create \
--name $deploymentName \
--location $location \
--template-file azuredeploy.securitycenter.json \
--parameters @azuredeploy.parameters.securitycenter.json# Clean up resource group (for testing - delete everything)
az group delete --name $resourceGroup
```