Terraform Provider for the Auth0 platform.
Note: This Provider was previously maintained under alexkappa/terraform-provider-auth0.
- Installation
- Documentation
- Usage
- Contributing
- What is Auth0?
- Create a free Auth0 Account
- Issue Reporting
- Author
- License
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 = "auth0/auth0"
version = "0.29.0"
}
}
}
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 it to the ~/.terraform.d/plugins/
directory. Finally, run terraform init.
provider "auth0" {}
$ terraform init
See the Auth0 Provider Documentation for all the available resources.
You can find examples on usage under the example folder.
See CONTRIBUTING.md.
Auth0 helps you to:
- Add authentication with multiple authentication sources, either social like Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others, or enterprise identity systems like Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider.
- Add authentication through more traditional username/password databases.
- Add support for linking different user accounts with the same user.
- Support for generating signed Json Web Tokens to call your APIs and flow the user identity securely.
- Analytics of how, when and where users are logging in.
- Pull data from other sources and add it to the user profile, through JavaScript rules.
- Go to Auth0 and click "Try Auth0 for Free".
- Use Google, GitHub or Microsoft Account to login.
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
This project is licensed under the MPL-2.0 license. See the LICENSE file for more info or auth0-terraform-provider.pdf for a full report.