jamesattard / terraform-fun

Hacks, notes and experiments with HashiCorp Terraform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

terraform-fun

Hacks, notes and experiments with HashiCorp Terraform

Samples

  • hello-world: Creates a Resource Group
  • vm-demo: Creates a Windows VM and configures IIS
  • appservice-to-vm: An App Services using an existing database in a VM
  • tshirt-sizes: terraform 0.11 style for parametrizing from a table
  • dsc-automation-vm: use Azure Automation to install a VSTS Agent
  • carving-subnets: using cidrsubnet and cidrhost to statically assign IP addresses
  • convey-params: pushing parameters from Terraform to Powershell via azurerm_virtual_machine_extension
  • uploader: script to upload files to Azure Storage
  • zipping: how to use archive_file to create a local Zip

Files not in repo

Set-AzureRMSecrets.ps1 sets the environment variables required by Terraform to act on Azure

# pro-demo / terraformfun
$env:ARM_ACCESS_KEY = "***"
# Subscription ID
$env:ARM_SUBSCRIPTION_ID = "******"
# Directory ID
$env:ARM_TENANT_ID = "******"
# Application ID (terraform-fun)
$env:ARM_CLIENT_ID = "******"
# Key $env:ComputerName exp. $(Get-Date)
$env:ARM_CLIENT_SECRET = "********"

Permissions

Can use two Service Principals (aka Applications) terraform-contrib and terraform-reader

Service Principal Resource Role / Access policy
terraform-contrib Subscription Contributor
terraform-contrib pro-demo KeyVault Get & List Secrets
terraform-reader Subscription Reader
terraform-reader pro-demo KeyVault Get & List Secrets

The latter can be shared "freely", the former can do damage (planning is key).

About

Hacks, notes and experiments with HashiCorp Terraform

License:MIT License


Languages

Language:PowerShell 84.4%Language:HCL 13.4%Language:C# 1.9%Language:HTML 0.3%