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" +}