Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 426 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 426 Bytes

JWKS Provider

The JWKS provider is used to help working with public and private keys to generate JSON Web Key Sets.

Example Usage

Terraform 0.13 and later:

# Configure the JWKS Provider
terraform {
  required_providers {
    jwks = {
      source = "jlmwork/jwks"
      version = "0.0.1"
    }
  }
}

provider "jwks" {}

Terraform 0.12 and earlier:

# Configure the JWKS Provider
provider "jwks" {}