Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 819 Bytes

File metadata and controls

42 lines (33 loc) · 819 Bytes
page_title subcategory description
supabase_function Data Source - terraform-provider-supabase
Function DataSource

supabase_function (Data Source)

Function DataSource

Example Usage

data "supabase_function" "my_function" {
  ref  = "...my_ref..."
  slug = "...my_slug..."
}

Schema

Required

  • ref (String) Project ref
  • slug (String) Function slug

Read-Only

  • compute_multiplier (Number)
  • created_at (Number)
  • entrypoint_path (String)
  • id (String) The ID of this resource.
  • import_map (Boolean)
  • import_map_path (String)
  • name (String)
  • status (String)
  • updated_at (Number)
  • verify_jwt (Boolean)
  • version (Number)