You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(onboarding): Datasource for OCI Trusted app group (#577)
* feat(onboarding): Datasource for OCI Trusted app group
Change summary:
----------------
- Adding new datasource secure_trusted_oracle_app to fetch OCI
trusted identity per app group.
- Added acc tests and docs for the new datasource.
* Add user ocid
* Uncomment ACC test assertions
* Fix tests
Retrieves information about the Sysdig Secure Trusted Oracle App
7
+
---
8
+
9
+
# Data Source: sysdig_secure_trusted_oracle_app
10
+
11
+
Retrieves information about the Sysdig Secure Trusted Oracle App
12
+
13
+
-> **Note:** Sysdig Terraform Provider is under rapid development at this point. If you experience any issue or discrepancy while using it, please make sure you have the latest version. If the issue persists, or you have a Feature Request to support an additional set of resources, please open a [new issue](https://github.com/sysdiglabs/terraform-provider-sysdig/issues/new) in the GitHub repository.
14
+
15
+
## Example Usage
16
+
17
+
```terraform
18
+
data "sysdig_secure_trusted_oracle_app" "onboarding" {
19
+
name = "onboarding"
20
+
}
21
+
```
22
+
23
+
## Argument Reference
24
+
25
+
*`name` - (Required) Sysdig's Oracle App name. Currently supported applications are `config_posture` and `onboarding`.
26
+
27
+
28
+
## Attributes Reference
29
+
30
+
In addition to all arguments above, the following attributes are exported:
31
+
32
+
*`tenancy_ocid` - The application's associated tenancy OCI identifer.
33
+
34
+
*`group_ocid` - The application's associated usergroup OCI identifier.
35
+
36
+
*`user_ocid` - The application's associated user OCI identifier.
0 commit comments