Skip to content

Commit faf1033

Browse files
rixhieloomisAkshat0694
authored andcommitted
rename workspaceids
1 parent e1af719 commit faf1033

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

transformer/terraform-cloud/data.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
data "tfe_workspace_ids" "data" {
2-
names = var.workspaceIds
2+
names = var.workspacenames
33
organization = var.tfOrg
44
tag_names = var.tfWorkspaceTags
55
exclude_tags = var.tfWorkspaceIgnoreTags

transformer/terraform-cloud/terraform.tfvars.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tfOrg = "my-terraform-cloud-org"
33

44
# List of workspace names to export. Use wildcards (e.g., ["*"]) for all workspaces
5-
workspaceIds = ["*"]
5+
workspacenames = ["*"]
66

77
# Export Terraform state
88
exportStateFiles = true

transformer/terraform-cloud/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ variable "tfOrg" {
33
type = string
44
}
55

6-
variable "workspaceIds" {
6+
variable "workspacenames" {
77
default = ["*"]
88
description = "List of TFC/TFE workspace names to export. Wildcards are supported (e.g., [\"*\"], [\"*-example\"], [\"example-*\"])."
99
type = list(string)

0 commit comments

Comments
 (0)