https://github.com/auth0/terraform-provider-auth0
The Auth0 Terraform Provider is the official plugin for managing Auth0 tenant configuration through the Terraform tool.
https://github.com/auth0/terraform-provider-auth0
dx-cdt
Last synced: 6 months ago
JSON representation
The Auth0 Terraform Provider is the official plugin for managing Auth0 tenant configuration through the Terraform tool.
- Host: GitHub
- URL: https://github.com/auth0/terraform-provider-auth0
- Owner: auth0
- License: mpl-2.0
- Created: 2022-02-01T16:36:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-28T14:18:41.000Z (about 1 year ago)
- Last Synced: 2025-03-31T20:08:52.509Z (about 1 year ago)
- Topics: dx-cdt
- Language: Go
- Homepage: https://registry.terraform.io/providers/auth0/auth0/latest/docs
- Size: 16.1 MB
- Stars: 177
- Watchers: 21
- Forks: 90
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-auth0 - terraform-provider-auth0 - The Auth0 Terraform Provider is the official plugin for managing Auth0 tenant configuration through the Terraform tool. (Developer Ecosystem)
README
Auth0 Terraform Provider
[](https://pkg.go.dev/github.com/auth0/terraform-provider-auth0)
[](https://goreportcard.com/report/github.com/auth0/terraform-provider-auth0)
[](https://github.com/auth0/terraform-provider-auth0/releases)
[](https://codecov.io/gh/auth0/terraform-provider-auth0)
[](https://github.com/auth0/terraform-provider-auth0/blob/main/LICENSE)
[](https://github.com/auth0/terraform-provider-auth0/actions?query=branch%3Amain)
[](https://deepwiki.com/auth0/terraform-provider-auth0)
-------------------------------------
The Auth0 Terraform Provider is the official plugin for managing Auth0 tenant configuration through the
[Terraform](https://www.terraform.io/) tool.
📚 [Documentation](#documentation) • 🚀 [Getting Started](#getting-started) • 💬 [Feedback](#feedback)
-------------------------------------
## Documentation
- [Official Docs](https://registry.terraform.io/providers/auth0/auth0/latest/docs)
- Guides
- [Quickstart](./docs/guides/quickstart.md)
- [List available triggers for actions](./docs/guides/action_triggers.md)
- [Zero downtime client credentials rotation](./docs/guides/client_secret_rotation.md)
## Getting Started
### Requirements
- [Terraform](https://www.terraform.io/downloads)
- An [Auth0](https://auth0.com) account
### Installation
Terraform uses the [Terraform Registry](https://registry.terraform.io/) to download and install providers. To install
this provider, copy and paste the following code into your Terraform configuration. Then, run `terraform init`.
```terraform
terraform {
required_providers {
auth0 = {
source = "auth0/auth0"
version = ">= 1.0.0" # Refer to docs for latest version
}
}
}
provider "auth0" {}
```
```shell
$ terraform init
```
## Feedback
### Contributing
We appreciate feedback and contribution to this repo! Before you get started, please see the following:
- [Contribution Guide](./CONTRIBUTING.md)
- [Auth0's General Contribution Guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
- [Auth0's Code of Conduct Guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
### Raise an issue
To provide feedback or report a bug, [please raise an issue on our issue tracker](https://github.com/auth0/terraform-provider-auth0/issues).
### Vulnerability reporting
Please do not report security vulnerabilities on the public GitHub issue tracker.
The [Responsible Disclosure Program](https://auth0.com/responsible-disclosure-policy) details the procedure for disclosing security issues.
---
Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout
[Why Auth0?](https://auth0.com/why-auth0)
This project is licensed under the MPL-2.0 license. See the [LICENSE](LICENSE) file for more info or
[auth0-terraform-provider.pdf](https://www.okta.com/sites/default/files/2022-03/auth0-terraform-provider.pdf) for a full
report.