-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
1 parent
2249b87
commit 67f37a1
Showing
5 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
subcategory: "Sysdig Secure" | ||
layout: "sysdig" | ||
page_title: "Sysdig: sysdig_secure_trusted_oracle_app" | ||
description: |- | ||
Retrieves information about the Sysdig Secure Trusted Oracle App | ||
--- | ||
|
||
# Data Source: sysdig_secure_trusted_oracle_app | ||
|
||
Retrieves information about the Sysdig Secure Trusted Oracle App | ||
|
||
-> **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. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "sysdig_secure_trusted_oracle_app" "onboarding" { | ||
name = "onboarding" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
* `name` - (Required) Sysdig's Oracle App name. Currently supported applications are `config_posture` and `onboarding`. | ||
|
||
|
||
## Attributes Reference | ||
|
||
In addition to all arguments above, the following attributes are exported: | ||
|
||
* `tenancy_ocid` - The application's associated tenancy OCI identifer. | ||
|
||
* `group_ocid` - The application's associated usergroup OCI identifier. | ||
|
||
* `user_ocid` - The application's associated user OCI identifier. | ||
|