From ca7e11cd1cdcf1281144834e1eacc35af26106dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20D=C5=82ugoszek?= Date: Thu, 24 Oct 2024 14:56:40 +0200 Subject: [PATCH] Fix docs --- docs/data-sources/space_by_path.md | 2 +- examples/data-sources/spacelift_space_by_path/data-source.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/data-sources/space_by_path.md b/docs/data-sources/space_by_path.md index 3239c042..928aba01 100644 --- a/docs/data-sources/space_by_path.md +++ b/docs/data-sources/space_by_path.md @@ -27,7 +27,7 @@ output "space_description" { value = data.spacelift_space_by_path.space.description } -// Assuming this data source is invoked in a run that belongs to a stack in a space located at "root", then the following data source shall be equal to the one above. +// Assuming this data source is created in a run that belongs to a stack in a space located at following path - "root", then the following data source shall be equal to the one above. data "spacelift_space_by_relative_path" "space" { space_path = "second space/my space" } diff --git a/examples/data-sources/spacelift_space_by_path/data-source.tf b/examples/data-sources/spacelift_space_by_path/data-source.tf index 2f9b6060..17b61145 100644 --- a/examples/data-sources/spacelift_space_by_path/data-source.tf +++ b/examples/data-sources/spacelift_space_by_path/data-source.tf @@ -6,7 +6,7 @@ output "space_description" { value = data.spacelift_space_by_path.space.description } -// Assuming this data source is invoked in a run that belongs to a stack in a space located at "root", then the following data source shall be equal to the one above. +// Assuming this data source is created in a run that belongs to a stack in a space located at following path - "root", then the following data source shall be equal to the one above. data "spacelift_space_by_relative_path" "space" { space_path = "second space/my space" }