From f0e2d41e8950b61ddbfb72bf71dfb077c0803854 Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Sat, 31 Jul 2021 12:49:54 -0700 Subject: [PATCH] 301-hub-spoke - Created and added main.tf and variables.tf files --- quickstart/301-hub-spoke/main.tf | 12 ++++++++++++ quickstart/301-hub-spoke/variables.tf | 18 ++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 quickstart/301-hub-spoke/main.tf create mode 100644 quickstart/301-hub-spoke/variables.tf diff --git a/quickstart/301-hub-spoke/main.tf b/quickstart/301-hub-spoke/main.tf new file mode 100644 index 00000000..40632e02 --- /dev/null +++ b/quickstart/301-hub-spoke/main.tf @@ -0,0 +1,12 @@ +terraform { + required_providers { + azurerm = { + source = "hashicorp/azurerm" + version = "~>2.0" + } + } +} + +provider "azurerm" { + features {} +} diff --git a/quickstart/301-hub-spoke/variables.tf b/quickstart/301-hub-spoke/variables.tf new file mode 100644 index 00000000..a0003cfd --- /dev/null +++ b/quickstart/301-hub-spoke/variables.tf @@ -0,0 +1,18 @@ +variable "location" { + description = "Location of the network" + default = "eastus" +} + +variable "username" { + description = "Username for Virtual Machines" + default = "azureuser" +} + +variable "password" { + description = "Password for Virtual Machines" +} + +variable "vmsize" { + description = "Size of the VMs" + default = "Standard_DS1_v2" +}