From e78010a2ba3abe57b2f420d76a3de38cc82bc8df Mon Sep 17 00:00:00 2001 From: cm06kb Date: Thu, 25 Apr 2019 11:05:09 +0200 Subject: [PATCH] Create terraform.tfvars.example --- terraform.tfvars.example | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 terraform.tfvars.example diff --git a/terraform.tfvars.example b/terraform.tfvars.example new file mode 100644 index 0000000..8a99cb8 --- /dev/null +++ b/terraform.tfvars.example @@ -0,0 +1,10 @@ +resource_group = "terraform-beginners-yourname" +hostname = "catapp9" +location = "centralus" + +# Use this command to see available regions +# az account list-locations --output table + +# Use this command to make sure the Standard_A0 VM is available +# If the command returns zero results, choose a different region. +# az vm list-skus -l centralus --output table | grep Standard_A0