Skip to content

Instantly share code, notes, and snippets.

View playersons's full-sized avatar

Hakan Kaya playersons

View GitHub Profile
@jamesrcounts
jamesrcounts / azure-create-terraform-backend.sh
Last active May 5, 2023 12:39
Snippets to illustrate getting started with Terraform in Azure DevOps
#!/usr/bin/env bash
set -euo pipefail
ID=$(uuidgen)
LOCATION=westus
RG=terraformrg
# Create unique name for storage account
STORAGE_ACCOUNT=$(echo "terraform-${ID}" | tr '[:upper:]' '[:lower:]' | sed 's/-//g' | cut -c1-24)