How to define Terraform Variables? What are the basic variable types in Terraform?
This one is the 2nd video on Terraform. We will be seeing terraform variables, how to access the terraform variable file & associated values. We have discussed further about terraform concepts and file layouts.
Please subscribe to get more video.
Code Repo for this tutorial: https://github.com/sdas92/azure/tree/...
Terraform Introduction video: • Introduction to Terraform | Overview of Te...
Terraform Variables: https://www.terraform.io/language/val...
Terraform Doc: https://www.terraform.io/docs
Environment variables for Azure authentication:
....
PowerShell:
$Env:ARM_CLIENT_ID="xxxx-xxxxx-xxxx"
$Env:ARM_CLIENT_SECRET="xxxxxxxxxxxxxxxxxxxxx"
$Env:ARM_TENANT_ID="xxxxx-xxxxxx-xxxxx"
....
Bash:
export ARM_CLIENT_ID="xxxx-xxxxx-xxxx"
export ARM_CLIENT_SECRET="xxxxxxxxxxxxxxxxxxxxx"
export ARM_TENANT_ID="xxxxx-xxxxxx-xxxxx"
Regards,
https://daslearning.in/
#Terraform #Variables #Azure