From 41bb03b963c11d6b4c9fbe905069dafd518dca90 Mon Sep 17 00:00:00 2001 From: Jubran Nassar <84308658+jubranNassar@users.noreply.github.com> Date: Tue, 30 Apr 2024 16:44:51 -0400 Subject: [PATCH] adds word "module" to spacelift_version (#539) --- docs/resources/version.md | 4 ++-- spacelift/resource_version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/resources/version.md b/docs/resources/version.md index a78b442d..e6490295 100644 --- a/docs/resources/version.md +++ b/docs/resources/version.md @@ -3,12 +3,12 @@ page_title: "spacelift_version Resource - terraform-provider-spacelift" subcategory: "" description: |- - spacelift_version allows to programmatically trigger a version creation in response to arbitrary changes in the keepers section. + spacelift_version allows to programmatically trigger a module version creation in response to arbitrary changes in the keepers section. --- # spacelift_version (Resource) -`spacelift_version` allows to programmatically trigger a version creation in response to arbitrary changes in the keepers section. +`spacelift_version` allows to programmatically trigger a module version creation in response to arbitrary changes in the keepers section. diff --git a/spacelift/resource_version.go b/spacelift/resource_version.go index 63eea674..380d0262 100644 --- a/spacelift/resource_version.go +++ b/spacelift/resource_version.go @@ -15,7 +15,7 @@ import ( func resourceVersion() *schema.Resource { return &schema.Resource{ Description: "" + - "`spacelift_version` allows to programmatically trigger a version creation " + + "`spacelift_version` allows to programmatically trigger a module version creation " + "in response to arbitrary changes in the keepers section.", CreateContext: resourceVersionCreate,