summaryrefslogtreecommitdiff
path: root/final/debian.tf
diff options
context:
space:
mode:
Diffstat (limited to 'final/debian.tf')
-rw-r--r--final/debian.tf14
1 files changed, 14 insertions, 0 deletions
diff --git a/final/debian.tf b/final/debian.tf
new file mode 100644
index 0000000..013977f
--- /dev/null
+++ b/final/debian.tf
@@ -0,0 +1,14 @@
+resource "incus_instance" "debian" {
+ name = "webserver1"
+ project = "lamp"
+ image = "images:debian/12/cloud"
+ wait_for {
+ type = "ipv4"
+ }
+ provisioner "local-exec" {
+ command = "./local_script ${self.ipv4_address} ${self.name}"
+ }
+ depends_on = [
+ incus_profile.lamp
+ ]
+}