diff --git a/index.html b/index.html index e753cb7..9231a3f 100644 --- a/index.html +++ b/index.html @@ -653,10 +653,18 @@ HCL: HashiCorp Configuration Language Declarative, human-readable — pure JSON works too. + +resource "openstack_compute_instance_v2" "web" { + name = "finistdevs-web" + flavor_name = "b3-8" + tags = ["web", "demo"] +} +
Declarative, human-readable — pure JSON works too.
+resource "openstack_compute_instance_v2" "web" { + name = "finistdevs-web" + flavor_name = "b3-8" + tags = ["web", "demo"] +} +