From ee32f4f65f115461f01743e8f27f8e124e5b5e4d Mon Sep 17 00:00:00 2001 From: cs-ic <ishchauhan_am@srmuniv.edu.in> Date: Mon, 21 Feb 2022 14:29:28 +0000 Subject: [PATCH] Clarifying Namespace in Terraform Module Registry --- doc/user/packages/terraform_module_registry/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/user/packages/terraform_module_registry/index.md b/doc/user/packages/terraform_module_registry/index.md index 6fc47a23373b..8fc47857a76d 100644 --- a/doc/user/packages/terraform_module_registry/index.md +++ b/doc/user/packages/terraform_module_registry/index.md @@ -93,7 +93,7 @@ credentials "gitlab.com" { Where `gitlab.com` can be replaced with the hostname of your self-managed GitLab instance. -You can then reference your Terraform Module from a downstream Terraform project: +You can then refer to your Terraform Module from a downstream Terraform project: ```plaintext module "<module>" { @@ -101,6 +101,8 @@ module "<module>" { } ``` +Where `<namespace>` is the [namespace](../../../user/group/index.md#namespaces) of the Terraform module registry. + ## Publish a Terraform module by using CI/CD To work with Terraform modules in [GitLab CI/CD](../../../ci/index.md), you can use -- GitLab