Skip to content

Commit 21a4ff7

Browse files
committed
test fix
1 parent 9986263 commit 21a4ff7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tfe/data_source_variable_set_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,11 @@ resource "tfe_variable_set" "foobar" {
106106
description = "a description"
107107
organization = tfe_organization.foobar.id
108108
workspace_ids = [tfe_workspace.foobar.id]
109-
project_ids = [tfe_project.foobar.id]
109+
}
110+
111+
resource "tfe_project_variable_set" "foobar" {
112+
variable_set_id = tfe_variable_set.foobar.id
113+
project_id = tfe_project.foobar.id
110114
}
111115
112116
resource "tfe_variable" "envfoo" {

0 commit comments

Comments
 (0)