diff --git a/docs/resources/stack.md b/docs/resources/stack.md index 1ca95b4e..bb5bf5cd 100644 --- a/docs/resources/stack.md +++ b/docs/resources/stack.md @@ -204,7 +204,7 @@ resource "spacelift_stack" "terragrunt-stack" { ### Required -- `branch` (String) GitHub branch to apply changes to +- `branch` (String) Git branch to apply changes to - `name` (String) Name of the stack - should be unique in one account - `repository` (String) Name of the repository, without the owner part diff --git a/spacelift/resource_stack.go b/spacelift/resource_stack.go index 1f1cedde..8e809b87 100644 --- a/spacelift/resource_stack.go +++ b/spacelift/resource_stack.go @@ -208,7 +208,7 @@ func resourceStack() *schema.Resource { }, "branch": { Type: schema.TypeString, - Description: "GitHub branch to apply changes to", + Description: "Git branch to apply changes to", Required: true, ValidateDiagFunc: validations.DisallowEmptyString, },