From a167934eaa22e97d3a704c1cb1f00ffe731d8ca3 Mon Sep 17 00:00:00 2001 From: sebas_correa Date: Fri, 7 Aug 2026 14:58:25 -0300 Subject: [PATCH] fix(docs): update usage example to a current release tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The root README's usage example pinned infrastructure/aws/vpc to v1.56.1, 6+ major versions behind the current v6.10.0 — update it so copy-pasting the example doesn't point at a stale tag. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 953511668..ecdcb7f72 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Reference any module via its Git source, pinned to a release tag: ```hcl module "vpc" { - source = "git::https://github.com/nullplatform/tofu-modules.git//infrastructure/aws/vpc?ref=v1.56.1" + source = "git::https://github.com/nullplatform/tofu-modules.git//infrastructure/aws/vpc?ref=v6.10.0" # module inputs ... }