appoptics / terraform-provider-appoptics

Apache License 2.0
4 stars 2 forks source link

terraform-provider-appoptics

This provider lets you save clicking in the AO UI by allowing you to produce AppOptics bits alongside the rest of your cloud infratructure.

You're able to programmatically create:

Example usage

See example.tf in this repo to understand how to start using the plugin.

Installing

Usage Notes

In order for the provider to work in a module, you need to add a required_providers block in your module as such:

terraform {
  required_providers {
    appoptics = {
      source  = "solarwinds.com/appopticsprovider/appoptics"
      version = ">= 0.5.1"
    }
  }
}

This needs to be done because this provider has not been published to the Terraform registry, which is the default location that Terraform will look in when searching for providers.

Issues/Bugs

Please report bugs and request enhancements in the Issues area of this repo.