### KeyHub Provider Configuration Source: https://registry.terraform.io/providers/topicuskeyhub/keyhub/latest/docs Configure the KeyHub provider with your KeyHub instance details and authentication credentials. Ensure the 'keyhub_secret' variable is set. ```terraform terraform { required_providers { keyhub = { source = "registry.terraform.io/topicuskeyhub/keyhub" version = "=2.30.0" } } } variable "keyhub_secret" { type = string description = "Client secret on KeyHub" } provider "keyhub" { issuer = "https://keyhub.example.com" clientid = "ebdf81ac-b02b-4335-9dc4-4a9bc4eb406d" clientsecret = var.keyhub_secret } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.