From 788136f4a825a9a9f2d5c540c609100d3a870716 Mon Sep 17 00:00:00 2001 From: Chris Cowley Date: Wed, 16 Apr 2025 09:45:28 +0000 Subject: [PATCH] Use HTTP backend --- 10-pre-k8s/provider.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/10-pre-k8s/provider.tf b/10-pre-k8s/provider.tf index 2a18cb1..d0fefd3 100644 --- a/10-pre-k8s/provider.tf +++ b/10-pre-k8s/provider.tf @@ -1,4 +1,11 @@ terraform { + backend "http" { + address = "http://192.168.6.3:8000/state" + lock_address = "http://192.168.6.3:8000/state" + unlock_address = "http://192.168.6.3:8000/state" + username = "terraform" + password = "terraform" + } required_version = ">= 1.0" required_providers { tailscale = {