jmlp1 / JMA-AZURE

0 stars 0 forks source link

Terraform Plan Error #2

Closed jmlp1 closed 1 month ago

jmlp1 commented 1 month ago

Issues with OS Variables, main and tfvars file

variables.tf variable "os" { description = "OS image to deploy" type = object({ publisher = string offer = string sku = string version = string }) }

tfvars os = { publisher = "Canonical" offer = "UbuntuServer" sku = "24.04-LTS" version = "latest" }

main storage_image_reference { publisher = var.os_publisher offer = var.os_offer sku = var.os_sku version = var.os_version }

jmlp1 commented 1 month ago

fixed with the split of above