From 016c4b5a5d48fa2f5194df2155ff6543868026f5 Mon Sep 17 00:00:00 2001 From: Akash Mondal Date: Thu, 23 Apr 2026 12:52:06 +0530 Subject: [PATCH] fix: update examples with terraform provider --- examples/basic/main.tf | 9 +++++++++ examples/existing-network/main.tf | 9 +++++++++ examples/private-vm/main.tf | 9 +++++++++ examples/with-data-volume/main.tf | 9 +++++++++ 4 files changed, 36 insertions(+) diff --git a/examples/basic/main.tf b/examples/basic/main.tf index e247524..e7d2d7d 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -1,3 +1,12 @@ +terraform { + required_providers { + huddle = { + source = "huddle01/cloud" + version = "~> 0.3" + } + } +} + provider "huddle" { api_key = var.huddle_api_key region = var.region diff --git a/examples/existing-network/main.tf b/examples/existing-network/main.tf index f1578bf..a28acbb 100644 --- a/examples/existing-network/main.tf +++ b/examples/existing-network/main.tf @@ -1,3 +1,12 @@ +terraform { + required_providers { + huddle = { + source = "huddle01/cloud" + version = "~> 0.3" + } + } +} + provider "huddle" { api_key = var.huddle_api_key region = var.region diff --git a/examples/private-vm/main.tf b/examples/private-vm/main.tf index a62e01d..9f57d68 100644 --- a/examples/private-vm/main.tf +++ b/examples/private-vm/main.tf @@ -1,3 +1,12 @@ +terraform { + required_providers { + huddle = { + source = "huddle01/cloud" + version = "~> 0.3" + } + } +} + provider "huddle" { api_key = var.huddle_api_key region = var.region diff --git a/examples/with-data-volume/main.tf b/examples/with-data-volume/main.tf index b81eec9..16a32c8 100644 --- a/examples/with-data-volume/main.tf +++ b/examples/with-data-volume/main.tf @@ -1,3 +1,12 @@ +terraform { + required_providers { + huddle = { + source = "huddle01/cloud" + version = "~> 0.3" + } + } +} + provider "huddle" { api_key = var.huddle_api_key region = var.region