From a9d37a634e27c56510ce03a922584bb824503c19 Mon Sep 17 00:00:00 2001 From: "blink-so[bot]" <211532188+blink-so[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 05:46:25 +0000 Subject: [PATCH] fix: Apply prettier formatting to Terraform code blocks Removes extra spaces in comments to match prettier formatting rules. --- CONTRIBUTING.md | 4 ++-- examples/modules/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e332cc43..70fe1aa0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -381,7 +381,7 @@ The most common approach is to mirror registry modules in an internal Git reposi ```tf module "code_server" { source = "git::https://your-internal-git.com/coder-modules.git//modules/code-server" - version = "1.0.19" # Use Git tags for versioning + version = "1.0.19" # Use Git tags for versioning agent_id = coder_agent.example.id } ``` @@ -436,7 +436,7 @@ module "code_server" { source = "registry.coder.com/coder/code-server/coder" version = "1.0.19" agent_id = coder_agent.example.id - offline = true # Prevents downloading from external sources + offline = true # Prevents downloading from external sources } ``` diff --git a/examples/modules/README.md b/examples/modules/README.md index 16febfba..0184b0b8 100644 --- a/examples/modules/README.md +++ b/examples/modules/README.md @@ -78,7 +78,7 @@ For air-gapped environments, reference modules from internal Git repositories: module "code_server" { source = "git::https://internal-git.company.com/coder-modules.git//modules/code-server?ref=v1.0.19" agent_id = coder_agent.example.id - offline = true # Prevent external downloads + offline = true # Prevent external downloads } ``` @@ -88,7 +88,7 @@ Vendor modules directly in your template repository: ```tf module "code_server" { - source = "./modules/code-server" # Relative path to vendored module + source = "./modules/code-server" # Relative path to vendored module agent_id = coder_agent.example.id } ```