File tree Expand file tree Collapse file tree 5 files changed +148
-1
lines changed Expand file tree Collapse file tree 5 files changed +148
-1
lines changed Original file line number Diff line number Diff line change 1
- //go:build tf_acc_sysdig_secure || tf_acc_onprem_secure || tf_acc_ibm_secure
1
+ //go:build tf_acc_sysdig_secure || tf_acc_onprem_secure
2
2
3
3
package sysdig_test
4
4
Original file line number Diff line number Diff line change
1
+ ---
2
+ subcategory : " Sysdig Monitor"
3
+ layout : " sysdig"
4
+ page_title : " Sysdig: sysdig_monitor_team"
5
+ description : |-
6
+ Retrieves information about a specific monitor team in Sysdig
7
+ ---
8
+
9
+ # sysdig_monitor_team
10
+
11
+ The ` sysdig_monitor_team ` data source retrieves information about a specific monitor team in Sysdig.
12
+
13
+ ## Example Usage
14
+
15
+ ``` terraform
16
+ resource "sysdig_monitor_team" "example" {
17
+ name = "Example Monitor Team"
18
+ description = "A test monitor team"
19
+ entrypoint {
20
+ type = "container"
21
+ selection = "container.image.name = \"nginx\""
22
+ }
23
+ }
24
+
25
+ data "sysdig_monitor_team" "example" {
26
+ id = sysdig_monitor_team.example.id
27
+ }
28
+ ```
29
+
30
+ ## Argument Reference
31
+
32
+ - ` id ` - (Required) The ID of the monitor team.
33
+
34
+ ## Attribute Reference
35
+
36
+ - ` name ` - The name of the monitor team.
37
+ - ` description ` - The description of the monitor team.
38
+ - ` entrypoint ` - The entrypoint configuration for the team.
39
+ - ` filter ` - The filter applied to the team.
40
+ - ` scope_by ` - The scope of the team.
41
+ - ` can_use_sysdig_capture ` - Whether the team can use Sysdig capture.
42
+ - ` can_see_infrastructure_events ` - Whether the team can see infrastructure events.
43
+ - ` can_use_aws_data ` - Whether the team can use AWS data.
44
+ - ` default_team ` - Whether the team is the default team.
45
+ - ` user_roles ` - The roles assigned to users in the team.
Original file line number Diff line number Diff line change
1
+ ---
2
+ subcategory : " Sysdig Monitor"
3
+ layout : " sysdig"
4
+ page_title : " Sysdig: sysdig_monitor_teams"
5
+ description : |-
6
+ Retrieves information about a specific monitor teams in Sysdig
7
+ ---
8
+
9
+ # sysdig_monitor_teams
10
+
11
+ The ` sysdig_monitor_teams ` data source retrieves a list of all monitor teams in Sysdig.
12
+
13
+ ## Example Usage
14
+
15
+ ``` terraform
16
+ data "sysdig_monitor_teams" "example" {}
17
+ ```
18
+
19
+ ## Attribute Reference
20
+
21
+ - ` teams ` - A list of monitor teams. Each team has the following attributes:
22
+ - ` id ` - The ID of the monitor team.
23
+ - ` name ` - The name of the monitor team.
24
+ - ` description ` - The description of the monitor team.
25
+ - ` filter ` - The filter applied to the team.
26
+ - ` scope_by ` - The scope of the team.
27
+ - ` can_use_sysdig_capture ` - Whether the team can use Sysdig capture.
28
+ - ` can_see_infrastructure_events ` - Whether the team can see infrastructure events.
29
+ - ` can_use_aws_data ` - Whether the team can use AWS data.
30
+ - ` default_team ` - Whether the team is the default team.
31
+ - ` user_roles ` - The roles assigned to users in the team.
Original file line number Diff line number Diff line change
1
+ ---
2
+ subcategory : " Sysdig Secure"
3
+ layout : " sysdig"
4
+ page_title : " Sysdig: sysdig_secure_team"
5
+ description : |-
6
+ Retrieves information about a specific secure team in Sysdig
7
+ ---
8
+
9
+ # sysdig_secure_team
10
+
11
+ The ` sysdig_secure_team ` data source retrieves information about a specific secure team in Sysdig.
12
+
13
+ ## Example Usage
14
+
15
+ ``` terraform
16
+ resource "sysdig_secure_team" "example" {
17
+ name = "Example Secure Team"
18
+ description = "A test secure team"
19
+ }
20
+
21
+ data "sysdig_secure_team" "example" {
22
+ id = sysdig_secure_team.example.id
23
+ }
24
+ ```
25
+
26
+ ## Argument Reference
27
+
28
+ - ` id ` - (Required) The ID of the secure team.
29
+
30
+ ## Attribute Reference
31
+
32
+ - ` name ` - The name of the secure team.
33
+ - ` description ` - The description of the secure team.
34
+ - ` filter ` - The filter applied to the team.
35
+ - ` scope_by ` - The scope of the team.
36
+ - ` use_sysdig_capture ` - Whether the team can use Sysdig capture.
37
+ - ` default_team ` - Whether the team is the default team.
38
+ - ` user_roles ` - The roles assigned to users in the team.
39
+ - ` zone_ids ` - The IDs of the zones associated with the team.
40
+ - ` all_zones ` - Whether the team has access to all zones.
Original file line number Diff line number Diff line change
1
+ ---
2
+ subcategory : " Sysdig Secure"
3
+ layout : " sysdig"
4
+ page_title : " Sysdig: sysdig_secure_teams"
5
+ description : |-
6
+ Retrieves information about a specific secure teams in Sysdig
7
+ ---
8
+
9
+ # sysdig_secure_teams
10
+
11
+ The ` sysdig_secure_teams ` data source retrieves a list of all secure teams in Sysdig.
12
+
13
+ ## Example Usage
14
+
15
+ ``` terraform
16
+ data "sysdig_secure_teams" "example" {}
17
+ ```
18
+
19
+ ## Attribute Reference
20
+
21
+ - ` teams ` - A list of secure teams. Each team has the following attributes:
22
+ - ` id ` - The ID of the secure team.
23
+ - ` name ` - The name of the secure team.
24
+ - ` description ` - The description of the secure team.
25
+ - ` filter ` - The filter applied to the team.
26
+ - ` scope_by ` - The scope of the team.
27
+ - ` use_sysdig_capture ` - Whether the team can use Sysdig capture.
28
+ - ` default_team ` - Whether the team is the default team.
29
+ - ` user_roles ` - The roles assigned to users in the team.
30
+ - ` zone_ids ` - The IDs of the zones associated with the team.
31
+ - ` all_zones ` - Whether the team has access to all zones.
You can’t perform that action at this time.
0 commit comments