# cybergav.in - 3rd July 2021 # This "Terraform Lab" creates the following: # - 1 x Resource Group # - 1 x Virtual Network # - 2 x Subnets # - 2 x VMs (Oracle Linux) with qperf installed and firewalld disabled and associated public and private IPs # # USE-CASE: Test network latency between endpoints in the same VNet. The VM SKU and settings will have a bearing on network performance. # ######################################################################################################################################### # # Terraform Provider Configuration # terraform { required_version = ">= 0.15" required_providers { azurerm = { source = "hashicorp/azurerm" version = "=2.58.0" } } } provider "azurerm" { features {} } # # Locals # locals { custom_data = <