Convert legacy Packer json template to hcl2 template (#247)

* convert legacy Packer json template to hcl2 template
This commit is contained in:
lonegunmanb
2023-09-19 13:37:17 +08:00
committed by GitHub
parent bb15543608
commit f2a6901f3f
12 changed files with 324 additions and 105 deletions

View File

@ -0,0 +1,6 @@
resource "random_pet" "id" {}
resource "azurerm_resource_group" "image_group" {
location = "eastus"
name = "packer-image-${random_pet.id.id}"
}