Skip to content

Latest commit

 

History

History
330 lines (234 loc) · 9.4 KB

File metadata and controls

330 lines (234 loc) · 9.4 KB
page_title subcategory description
firehydrant_teams Data Source - terraform-provider-firehydrant
Teams DataSource

firehydrant_teams (Data Source)

Teams DataSource

Example Usage

data "firehydrant_teams" "my_teams" {
  default_incident_role = "...my_default_incident_role..."
  lite                  = true
  name                  = "...my_name..."
  page                  = 6
  per_page              = 10
  query                 = "...my_query..."
  services              = "...my_services..."
}

Schema

Optional

  • default_incident_role (String) Filter by teams that have or do not have members with a default incident role asssigned. Value may be 'present', 'blank', or the ID of an incident role.
  • lite (Boolean) Boolean to determine whether to return a slimified version of the teams object
  • name (String) A query to search teams by their name
  • page (Number)
  • per_page (Number)
  • query (String) A query to search teams by their name or description
  • services (String) A comma separated list of service IDs

Read-Only

Nested Schema for data

Read-Only:

Nested Schema for data.created_by

Read-Only:

  • email (String)
  • id (String)
  • name (String)
  • source (String)

Nested Schema for data.functionalities

Read-Only:

  • active_incidents (List of String) List of active incident guids
  • alert_on_add (Boolean)
  • auto_add_responding_team (Boolean)
  • created_at (String)
  • description (String)
  • external_resources (Attributes List) Information about known linkages to representations of services outside of FireHydrant. (see below for nested schema)
  • id (String)
  • labels (Map of String) An object of label key and values
  • links (Attributes List) List of links attached to this functionality. (see below for nested schema)
  • name (String)
  • owner (Attributes) TeamEntity model (see below for nested schema)
  • slug (String)
  • updated_at (String)
  • updated_by (Attributes) (see below for nested schema)

Nested Schema for data.functionalities.external_resources

Read-Only:

  • connection_id (String)
  • connection_name (String)
  • connection_type (String)
  • created_at (String)
  • name (String)
  • remote_id (String)
  • remote_url (String)
  • updated_at (String)

Nested Schema for data.functionalities.links

Read-Only:

  • href_url (String)
  • icon_url (String)
  • id (String)
  • name (String)

Nested Schema for data.functionalities.owner

Nested Schema for data.functionalities.updated_by

Read-Only:

  • email (String)
  • id (String)
  • name (String)
  • source (String)

Nested Schema for data.memberships

Read-Only:

Nested Schema for data.memberships.default_incident_role

Read-Only:

  • created_at (String)
  • description (String)
  • discarded_at (String)
  • id (String)
  • name (String)
  • summary (String)
  • updated_at (String)

Nested Schema for data.memberships.schedule

Read-Only:

  • discarded (Boolean)
  • id (String)
  • integration (String)
  • name (String)

Nested Schema for data.memberships.user

Read-Only:

  • created_at (String)
  • email (String)
  • id (String)
  • name (String)
  • signals_enabled_notification_types (List of String)
  • slack_linked (Boolean)
  • slack_user_id (String)
  • updated_at (String)

Nested Schema for data.ms_teams_channel

Read-Only:

  • channel_id (String)
  • channel_name (String)
  • channel_url (String)
  • id (String)
  • ms_team_id (String)
  • status (String)
  • team_name (String)

Nested Schema for data.owned_functionalities

Read-Only:

  • active_incidents (List of String) List of active incident guids
  • alert_on_add (Boolean)
  • auto_add_responding_team (Boolean)
  • created_at (String)
  • description (String)
  • external_resources (Attributes List) Information about known linkages to representations of services outside of FireHydrant. (see below for nested schema)
  • id (String)
  • labels (Map of String) An object of label key and values
  • links (Attributes List) List of links attached to this functionality. (see below for nested schema)
  • name (String)
  • owner (Attributes) TeamEntity model (see below for nested schema)
  • slug (String)
  • updated_at (String)
  • updated_by (Attributes) (see below for nested schema)

Nested Schema for data.owned_functionalities.external_resources

Read-Only:

  • connection_id (String)
  • connection_name (String)
  • connection_type (String)
  • created_at (String)
  • name (String)
  • remote_id (String)
  • remote_url (String)
  • updated_at (String)

Nested Schema for data.owned_functionalities.links

Read-Only:

  • href_url (String)
  • icon_url (String)
  • id (String)
  • name (String)

Nested Schema for data.owned_functionalities.owner

Nested Schema for data.owned_functionalities.updated_by

Read-Only:

  • email (String)
  • id (String)
  • name (String)
  • source (String)

Nested Schema for data.owned_runbooks

Read-Only:

  • attachment_rule (Attributes) (see below for nested schema)
  • categories (String) categories the runbook applies to
  • created_at (String)
  • description (String)
  • id (String)
  • name (String)
  • owner (Attributes) TeamEntity model (see below for nested schema)
  • summary (String)
  • type (String)
  • updated_at (String)

Nested Schema for data.owned_runbooks.attachment_rule

Read-Only:

Nested Schema for data.owned_runbooks.attachment_rule.logic

Nested Schema for data.owned_runbooks.attachment_rule.user_data

Read-Only:

  • label (String)
  • type (String)
  • value (String)

Nested Schema for data.owned_runbooks.owner

Nested Schema for data.slack_channel

Read-Only:

  • id (String)
  • name (String)
  • slack_channel_id (String)

Nested Schema for pagination

Read-Only:

  • count (Number)
  • items (Number)
  • last (Number)
  • next (Number)
  • page (Number)
  • pages (Number)
  • prev (Number)