Skip to content

Commit 841eabc

Browse files
committed
Fix iam
1 parent 8fb105d commit 841eabc

File tree

4 files changed

+1937
-217
lines changed

4 files changed

+1937
-217
lines changed

internal/services/iam/group_data_source_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ func TestAccDataSourceGroup_Basic(t *testing.T) {
2929
3030
data "scaleway_iam_group" "find_by_name_basic" {
3131
name = scaleway_iam_group.main_ds_basic.name
32-
organization_id = "105bdce1-64c0-48ab-899d-868455867ecf"
3332
}
3433
`,
3534
Check: resource.ComposeTestCheckFunc(
@@ -44,6 +43,7 @@ func TestAccDataSourceGroup_Basic(t *testing.T) {
4443
})
4544
}
4645

46+
// This test should be run using the provider test account
4747
func TestAccDataSourceGroup_UsersAndApplications(t *testing.T) {
4848
tt := acctest.NewTestTools(t)
4949
defer tt.Cleanup()
@@ -60,9 +60,12 @@ func TestAccDataSourceGroup_UsersAndApplications(t *testing.T) {
6060
name = "tf_tests_iam_group_ds_app"
6161
}
6262
63+
6364
data "scaleway_iam_user" "user00" {
6465
user_id = "ef29ce05-3f2b-4fa0-a259-d76110850d57"
6566
}
67+
68+
6669
data "scaleway_iam_user" "user01" {
6770
user_id = "84d20ae1-9650-419a-ab74-7ab09b6262e0"
6871
}

0 commit comments

Comments
 (0)