A Terraform Provider to manage your workloads on EDB BigAnimal interacting with the BigAnimal API. The provider is licensed under the MPL v2.
If you are willing to contribute please read here.
Main links:
To install the BigAnimal provider, copy and paste this code into your Terraform configuration. Then,
run terraform init
.
terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "3.1.0"
}
}
}
provider "biganimal" {
# Configuration options
ba_access_key = <redacted> // See Getting an Access Key section for details
}
You can also set the BA_ACCESS_KEY
environment variable. When it is set as env var, you
don't need to add any configuration options to the provider block described above.
export BA_ACCESS_KEY=<redacted>
Plese refer to https://www.enterprisedb.com/docs/biganimal/latest/reference/access_key/
Please visit the DEVELOPMENT.md page for further details about development and testing.