Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/authress/terraform-provider-authress
The Authress terraform provider to automatically configure Authress from Terraform
https://github.com/authress/terraform-provider-authress
access-control authentication authorization authress configuration permissions policies terraform
Last synced: 27 days ago
JSON representation
The Authress terraform provider to automatically configure Authress from Terraform
- Host: GitHub
- URL: https://github.com/authress/terraform-provider-authress
- Owner: Authress
- License: apache-2.0
- Created: 2023-02-24T20:29:42.000Z (almost 2 years ago)
- Default Branch: release/2.0
- Last Pushed: 2024-02-21T10:48:32.000Z (11 months ago)
- Last Synced: 2024-12-11T19:07:58.261Z (27 days ago)
- Topics: access-control, authentication, authorization, authress, configuration, permissions, policies, terraform
- Language: Go
- Homepage: https://authress.io
- Size: 71.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Authress Terraform Provider
The Authress terraform provider to automatically configure Authress from Terraform[![GitHub Workflow][workflow]][workflow-link] [![Forums][discuss-badge]][discuss] [![Terraform][terraform-badge]][terraform-link]
[workflow]: https://github.com/authress/terraform-provider-authress/actions/workflows/build.yml/badge.svg
[workflow-link]: https://github.com/Authress/terraform-provider-authress/actions[discuss-badge]: https://img.shields.io/badge/build-terraform--authress-623CE4.svg
[discuss]: https://discuss.hashicorp.com/c/terraform-providers/31[terraform-badge]: https://img.shields.io/badge/install-terraform--authress-blue.svg
[terraform-link]: https://registry.terraform.io/providers/authress/authress/latest/docs## Installation
Install the `Authress` terraform provider, and review the documentation @ [Authress Terraform Documentation](https://registry.terraform.io/providers/authress/authress/latest/docs)
```hcl
terraform {
required_providers {
authress = {
source = "authress/authress"
}
}
}provider "authress" {
# Specify your Authress custom domain, configured at https://authress.io/app/#/settings?focus=domain
custom_domain = "https://login.example.com"
}
```## Development
For developing this plugin see more information in [Development Docs](./development-examples/README.md).