Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

alexkappa/terraform-provider-auth0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4905251 · Feb 3, 2022
Jan 26, 2022
Feb 3, 2022
Jan 26, 2022
Feb 3, 2022
Jan 25, 2022
Jan 17, 2022
Apr 16, 2020
Nov 23, 2021
Jan 20, 2022
Jan 26, 2022
Jan 26, 2022
Jan 18, 2019
Oct 19, 2021
Jan 26, 2022
Nov 9, 2021
Nov 9, 2021
Sep 6, 2020

Repository files navigation

Auth0 Terraform Provider

Build Maintainability Test Coverage Gitter

Sponsors

If you would like to quickly implement a secure authentication flow with Terraform, create an Auth0 account; it's free!
If you or your company relies on this provider and would like to ensure its continuing support please consider sponsoring.

Usage

Terraform 0.13+

Terraform 0.13 and higher uses the Terraform Registry to download and install providers. To install this provider, copy and paste this code into your Terraform configuration. Then, run terraform init.

terraform {
  required_providers {
    auth0 = {
      source  = "alexkappa/auth0"
      version = "0.17.1"
    }
  }
}

provider "auth0" {}
$ terraform init

Terraform 0.12.x

For older versions of Terraform, binaries are available at the releases page. Download one that corresponds to your operating system / architecture, and move to the ~/.terraform.d/plugins/ directory. Finally, run terraform init.

provider "auth0" {}
$ terraform init

See the Auth0 Provider documentation for all the available resources.

Contributing

See CONTRIBUTING.md.