From c3244644db349c75199bd42cc28f2199553f7da8 Mon Sep 17 00:00:00 2001 From: Karim Naufal Date: Sat, 19 Mar 2022 22:48:40 +0100 Subject: [PATCH] tweaked readme --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b5486c1..fb31dfb 100644 --- a/README.md +++ b/README.md @@ -184,13 +184,11 @@ agent_nodepools = [] It is easy to use Kube-Hetzner as a Terraform module. To do so: -1. Clone it on your localhost. -2. Declare a module, with the name of your choice, and choose `kube-hetzner` as its source. -3. Copy your `terraform.tfvars` file to the module directory. - ``` terraform -module "kh" { - source = "./kube-hetzner" +module "kube-hetzner" { + source = "kube-hetzner/kube-hetzner/hcloud" + + # insert the required variables here found in terraform.tfvars.example } ```