Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.06 KB

File metadata and controls

53 lines (37 loc) · 1.06 KB
page_title subcategory description
openai_invites Data Source - terraform-provider-openai

openai_invites (Data Source)

Example Usage

# List all invites (no filtering arguments supported)
data "openai_invites" "all" {
}

# Output total invites count
output "total_invites" {
  value = length(data.openai_invites.all.invites)
}

Schema

Read-Only

  • id (String) The ID of this resource.
  • invites (List of Object) List of pending invitations (see below for nested schema)

Nested Schema for invites

Read-Only:

  • created_at (String)
  • email (String)
  • expires_at (String)
  • id (String)
  • projects (List of Object) (see below for nested schema)
  • role (String)
  • status (String)

Nested Schema for invites.projects

Read-Only:

  • id (String)
  • role (String)