Skip to content

adeo-opensource/terraform-provider-awx

Repository files navigation

terraform-provider-awx

All Contributors Quality Gate Status Coverage Duplicated Lines (%) Bugs

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!

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages