Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1.42 KB

File metadata and controls

47 lines (35 loc) · 1.42 KB
page_title subcategory description
opal_app Data Source - terraform-provider-opal
App DataSource

opal_app (Data Source)

App DataSource

Example Usage

data "opal_app" "my_app" {
  id = "32acc112-21ff-4669-91c2-21e27683eaa1"
}

Schema

Required

  • id (String) The ID of the app.

Read-Only

  • admin_owner_id (String) The ID of the owner of the app.
  • description (String) A description of the app.
  • name (String) The name of the app.
  • type (String) The type of an app.
  • validations (Attributes List) Validation checks of an apps' configuration and permissions. (see below for nested schema)

Nested Schema for validations

Read-Only:

  • details (String) Extra details regarding the validation. Could be an error message or restrictions on permissions.
  • key (String) The key of the app validation. These are not unique IDs between runs.
  • name (String) The human-readable description of whether the validation has the permissions. Parsed as JSON.
  • severity (String) The severity of an app validation.
  • status (String) The status of an app validation.
  • updated_at (String) The date and time the app validation was last run.
  • usage_reason (String) The reason for needing the validation.