We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f30496 commit f0e2d41Copy full SHA for f0e2d41
quickstart/301-hub-spoke/main.tf
@@ -0,0 +1,12 @@
1
+terraform {
2
+ required_providers {
3
+ azurerm = {
4
+ source = "hashicorp/azurerm"
5
+ version = "~>2.0"
6
+ }
7
8
+}
9
+
10
+provider "azurerm" {
11
+ features {}
12
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"
13
14
15
+variable "vmsize" {
16
+ description = "Size of the VMs"
17
+ default = "Standard_DS1_v2"
18
0 commit comments