Skip to content

Commit

Permalink
chore(DMVP-2598): fix typos and move provide into right place
Browse files Browse the repository at this point in the history
  • Loading branch information
aramkarapetian committed Sep 3, 2023
1 parent 5c5193e commit de75897
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 1 addition & 2 deletions modules/workspace/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "name" {
type = string
description = "module/repo-folder/workspace name and uniq identifier"
description = "module/repo-folder/workspace name and unique identifier"
}

variable "module_source" {
Expand All @@ -23,7 +23,6 @@ variable "workspace" {
project = optional(string, null) # name of the project to be created and where the workspace should be created
project_id = optional(string, null) # ID of the project which already exists, if none of project and project_id is provided Default Project is used for storing workspaces
})

description = "Terraform cloud workspace configurations"
}

Expand Down
8 changes: 8 additions & 0 deletions tests/basic/0-setup.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
terraform {
cloud {
organization = "dasmeta-testing"
workspaces {
name = "terraform-tfe-cloud-test"
}
}
}

0 comments on commit de75897

Please sign in to comment.