From ed7be06d37cec1c3e39b76f703068179e043d41f Mon Sep 17 00:00:00 2001 From: Anthony Z Date: Thu, 16 Mar 2023 01:21:49 +0000 Subject: [PATCH] Update README and example/main.tf --- README.md | 4 ++-- example/main.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 76affe8..a97575c 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,8 @@ vault kv get secret/vendor/gandi/username 4. Run terraform apply to apply the desired changes ```hcl -module "gandi_vault_tf" { - source = "github.com/belua/gandi-vault-test" +module "example" { + source = "zboralski/vault/gandi" api_key_path = "secret/vendor/gandi/username" domain = "example.com" diff --git a/example/main.tf b/example/main.tf index 6083bf5..13bec78 100644 --- a/example/main.tf +++ b/example/main.tf @@ -1,5 +1,5 @@ module "gandi_vault_tf" { - source = "../" + source = "zboralski/vault/gandi" api_key_path = "secret/vendor/gandi/username" domain = "example.com"