### Configure Zoom Provider with Terraform Source: https://registry.terraform.io/providers/folio-sec/zoom/0.0.12/docs This snippet shows how to configure the Zoom provider in Terraform. It specifies the source and version of the provider and sets authentication credentials using variables. The variables for client ID and secret are marked as sensitive. ```terraform terraform { required_providers { zoom = { source = "folio-sec/zoom" version = ">= 0.0.0, < 1.0.0" } } } provider "zoom" { account_id = var.zoom_account_id client_id = var.zoom_client_id client_secret = var.zoom_client_secret } variable "zoom_account_id" {} variable "zoom_client_id" {} variable "zoom_client_secret" { sensitive = true } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.