terraform/examples/azure-vm-simple-linux
Scott Nowicki 9232165e20 rename; and execute perms 2017-04-24 12:22:54 -05:00
..
.gitignore updated to best practices/conventions 2017-04-22 17:27:49 -05:00
README.md updated to best practices/conventions 2017-04-22 17:27:49 -05:00
after_deploy.sh rename; and execute perms 2017-04-24 12:22:54 -05:00
before_deploy.sh rename; and execute perms 2017-04-24 12:22:54 -05:00
deploy.mac.sh cleanup; sane defaults 2017-04-24 11:45:24 -05:00
deploy.sh cleanup; sane defaults 2017-04-24 11:45:24 -05:00
main.tf cleanup; sane defaults 2017-04-24 11:45:24 -05:00
outputs.tf trying terraform 0.9.2 for destroy bug; fixed interpolation issue with sshCommand 2017-04-20 00:43:32 -05:00
provider.tf.example updated to best practices/conventions 2017-04-22 17:27:49 -05:00
terraform.tfvars.example cleanup; sane defaults 2017-04-24 11:45:24 -05:00
variables.tf cleanup; sane defaults 2017-04-24 11:45:24 -05:00

README.md

Very simple deployment of a Linux VM

This template allows you to deploy a simple Linux VM using a few different options for the Ubuntu version, using the latest patched version. This will deploy a A1 size VM in the resource group location and return the FQDN of the VM.

This template takes a minimum amount of parameters and deploys a Linux VM, using the latest patched version.

azuredeploy.tf

The azuredeploy.tf file contains the actual resources that will be deployed. It also contains the Azure Resource Group definition and any defined variables.

outputs.tf

This data is outputted when terraform apply is called, and can be queried using the terraform output command.

provider.tf

Azure requires that an application is added to Azure Active Directory to generate the client_id, client_secret, and tenant_id needed by Terraform (subscription_id can be recovered from your Azure account details). Please go here for full instructions on how to create this to populate your provider.tf file.

terraform.tfvars

If a terraform.tfvars file is present in the current directory, Terraform automatically loads it to populate variables. We don't recommend saving usernames and password to version control, but you can create a local secret variables file and use -var-file to load it.

variables.tf

The variables.tf file contains all of the input parameters that the user can specify when deploying this Terraform template.

.gitignore

If you are committing this template to source control, please insure that the following files are added to your .gitignore file.

terraform.tfstate*
terraform.tfvars
provider.tf*