added sample for creating a NAT gateway with a virtual machine and corresponding network, subnet and public IP addresses

This commit is contained in:
asudbring
2024-01-19 23:58:31 -08:00
committed by lonegunmanb
parent 7e1008fa74
commit 482e26632b
6 changed files with 265 additions and 0 deletions

View File

@ -0,0 +1,20 @@
terraform {
required_providers {
azapi = {
source = "azure/azapi"
version = "~>1.5"
}
azurerm = {
source = "hashicorp/azurerm"
version = "~>3.0"
}
random = {
source = "hashicorp/random"
version = "~>3.0"
}
}
}
provider "azurerm" {
features {}
}