Skip to content

Commit a62c796

Browse files
committed
update test data
1 parent 72ab7c1 commit a62c796

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

sysdig/data_source_sysdig_monitor_team.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ func dataSourceSysdigMonitorTeam() *schema.Resource {
7171
"entrypoint": {
7272
Type: schema.TypeList,
7373
Computed: true,
74-
Optional: true,
7574
Elem: &schema.Resource{
7675
Schema: map[string]*schema.Schema{
7776
"type": {

sysdig/data_source_sysdig_monitor_team_test.go

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,14 @@ func monitorTeamResourceAndDatasource(name string) string {
3737
resource "sysdig_monitor_team" "sample" {
3838
name = "%s"
3939
description = "A monitor secure team"
40-
scope_by = "container"
41-
filter = "container.image.repo = \"sysdig/agent\""
40+
scope_by = "host"
41+
filter = "container.image.repo = \"sysdig/agent\""
42+
can_use_sysdig_capture = true
43+
can_see_infrastructure_events = true
44+
45+
entrypoint {
46+
type = "Dashboards"
47+
}
4248
}
4349
4450
data "sysdig_monitor_team" "test" {

0 commit comments

Comments
 (0)