
Description
The AWX provider allow Terraform to read from, write to, and configure AWX.
Roadmap
Resources managed by the provider
AWX authentication configuration options
There are environment variables that allow you to authenticate yourself:
- AWX_HOSTNAME
- AWX_USERNAME
- AWX_PASSWORD
- AWX_TOKEN
Example Usage
# It is strongly recommended to configure this provider through the
# environment variables described above.
provider "awx" {}
Basic auth usage
provider "awx" {
hostname = "https://my-awx"
username = "test"
password = "changeme" # pragma: allowlist secret
}
Token usage
provider "awx" {
hostname = "https://my-awx"
token = "test"
}
How to contribute?
Learn about how to contribute
Where to ask Questions?
Questions can be asked in form of issues in this repository:
Open an issue
Changelog
Learn about the latest improvements
License
Project is under Apache 2.0 license. See License file for more information.
Contributors ✨
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification.
Contributions of any kind welcome!