From fc98724ee0606f41212f97cd829e550b46d21d4d Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Fri, 3 Jul 2026 01:15:15 +0900 Subject: [PATCH] Add HCL syntax highlightin in markdown --- docs/02_terraform_provisioning.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/02_terraform_provisioning.md b/docs/02_terraform_provisioning.md index c15dbb9..0013a23 100644 --- a/docs/02_terraform_provisioning.md +++ b/docs/02_terraform_provisioning.md @@ -20,7 +20,7 @@ When I first booted RHEL 10 virtual machines, they crashed immediately and locke I updated the CPU configuration block in main.tf to pass the host CPU instruction directly to the VM: -``` +```hcl cpu { mode = "host-passthrough" } @@ -36,7 +36,7 @@ Traditional virtual machines use a legacy BIOS loader. However, modern RHEL 10 g To enable UEFI in my KVM VMs, I configured the domain firmware blocks: -``` +```hcl nvram { file = "/var/lib/libvirt/qemu/nvram/${each.key}_VARS.fd" template = "/usr/share/edk2/ovmf/OVMF_VARS.fd"