Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```